wix-incubator / react-native-keyboard-aware-scrollview

Created by artald
MIT License
488 stars 97 forks source link

Error thrown when selecting input #50

Open NickTheTurtle opened 4 years ago

NickTheTurtle commented 4 years ago

I got this error when I select an input (on the first or second time after render) in a KeyboardAwareScrollView. I did nothing special, just wrapped a KeyboardAwareScrollView around some inputs from UI Kitten. I'm running the latest version of this package with React Native 0.63.2, no Expo, on iPhone 11 iOS 13.6.

image
stanislaugh commented 3 years ago

Had same issue. Fixed by changing keyboardShouldPersistTaps from 'handled' back to 'never':

<KeyboardAwareScrollView keyboardShouldPersistTaps="never" automaticallyAdjustContentInsets={false}>