wix-incubator / react-native-keyboard-input

Use your own custom input component instead of the system keyboard
MIT License
819 stars 150 forks source link

revealKeyboardInteractive only works when scrollView inverted=true #68

Open samfriend opened 5 years ago

samfriend commented 5 years ago

if the scrollView is NOT inverted, the keyboard will reveal unexpected during scroll

probably caused by this?

KeyboardTrackingViewManager.m:566

if (inputView != nil && scrollView.contentOffset.y * (self.scrollIsInverted ? -1 : 1) > (self.scrollIsInverted ? scrollView.contentInset.top : scrollView.contentInset.bottom) + 50 && ![inputView isFirstResponder])