Hi, In many apps, if we try to switch between input fields in a form with multiple form fields by tapping on the second field, the field we currently on will loose focus and the tapped field will be focused. But while using this plugin, it won't happen like this. If we tap on a second field, the already focused field will loose focus and the keyboard will hide. But the tapped field will not be focused. We have to tap on it again! How can I fix this?
Looks like it's a react-native ScrollView issue :-) Fixed with ScrollView's keyboardShouldPersistTaps props and Keyboard.dismiss(); from react-native core packages.
Hi, In many apps, if we try to switch between input fields in a form with multiple form fields by tapping on the second field, the field we currently on will loose focus and the tapped field will be focused. But while using this plugin, it won't happen like this. If we tap on a second field, the already focused field will loose focus and the keyboard will hide. But the tapped field will not be focused. We have to tap on it again! How can I fix this?