FaridSafi / react-native-gifted-form

📝 « One React-Native form component to rule them all »
MIT License
1.44k stars 214 forks source link

Disable user input? #65

Open KishPatel1996 opened 8 years ago

KishPatel1996 commented 8 years ago

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

sambwest commented 8 years ago

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}