react-native-element-textinput
react-native-element-textinput copied to clipboard
Add editable and selectTextOnFocus props just like React Native Textinput
<TextInput
editable={false}
selectTextOnFocus={false}
style={{ padding: 30 }}
placeholder="Name"
/>
editable set to false disables typing in the input. selectTextOnFocus set to false means text won’t be selected when we focus on it.