mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
27 lines
654 B
JavaScript
27 lines
654 B
JavaScript
import { TextInput, StyleSheet } from 'react-native';
|
|
|
|
export default function CustomTextInput({ style, value, inputMode, placeholder, onChangeText }) {
|
|
return (
|
|
<TextInput
|
|
value={value}
|
|
inputMode={inputMode}
|
|
style={[styles.input, style]}
|
|
placeholder={placeholder}
|
|
multiline={false}
|
|
onChangeText={onChangeText}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
input: {
|
|
width: "100%",
|
|
padding: 15,
|
|
borderColor: '#777',
|
|
borderRadius: 12,
|
|
borderWidth: 2,
|
|
backgroundColor: '#fff',
|
|
fontSize: 20,
|
|
},
|
|
});
|