react-native-gifted-form
react-native-gifted-form copied to clipboard
Disable user input?
Is there a way to disable user input for text fields?
You can pass all of the react native TextInput props: https://facebook.github.io/react-native/docs/textinput.html#editable
Just add editable={false} to your widget:
<GiftedForm.TextInputWidget editable={false}