react-native-keyboard-input icon indicating copy to clipboard operation
react-native-keyboard-input copied to clipboard

revealKeyboardInteractive only works when scrollView inverted=true

Open samfriend opened this issue 7 years ago • 0 comments

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])

samfriend avatar Nov 05 '18 00:11 samfriend