In my React Native 0.22 iOS app, I have a ScrollView
with multiple TextInput
element in it.
I noticed that when I change focus from one TextInput to another by tapping on the next TextInput, the keyboard will dismiss and the next TextInput
won't get focused immediately. It only get focus on the second time I tap on it (and then keyboard comes back again, really bad experience).
This behavior only happen on TextInput
in ScrollView
, but not View
. I am wondering if there's any way to work around it?
Thank you!
keyboardShouldPersistTaps={true}
to ScrollView. – Universalist