react-native-gifted-form icon indicating copy to clipboard operation
react-native-gifted-form copied to clipboard

Disable user input?

Open KishPatel1996 opened this issue 8 years ago • 1 comments

Is there a way to disable user input for text fields?

KishPatel1996 avatar Jun 07 '16 14:06 KishPatel1996

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}

sambwest avatar Aug 04 '16 23:08 sambwest