When I\'m focused in one TextInput
, tapping in another TextInput
field doesn\'t do what I\'d expect (change focus to that Te
You Can Use Resign First Responder using TextInput Delegate Method
You need to add keyboardShouldPersistTaps={true}
to you ScrollView.
keyboardShouldPersistTaps bool:
When false, tapping outside of the focused text input when the keyboard is up dismisses the keyboard. When true, the scroll view will not catch taps, and the keyboard will not dismiss automatically. The default value is false.