You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
935 B
40 lines
935 B
import React from "react";
|
|
import { View, TextInput, StyleSheet } from "react-native";
|
|
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
|
|
|
import defaultStyles from "../config/styles";
|
|
|
|
function AppTextInput({ icon, width = "100%", ...otherProps }) {
|
|
return (
|
|
<View style={[styles.container, { width }]}>
|
|
{icon && (
|
|
<MaterialCommunityIcons
|
|
name={icon}
|
|
size={20}
|
|
color={defaultStyles.colors.medium}
|
|
style={styles.icon}
|
|
/>
|
|
)}
|
|
<TextInput
|
|
placeholderTextColor={defaultStyles.colors.medium}
|
|
style={defaultStyles.text}
|
|
{...otherProps}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
backgroundColor: defaultStyles.colors.light,
|
|
borderRadius: 25,
|
|
flexDirection: "row",
|
|
padding: 15,
|
|
marginVertical: 10,
|
|
},
|
|
icon: {
|
|
marginRight: 10,
|
|
},
|
|
});
|
|
|
|
export default AppTextInput;
|