react-native-keyboard-aware-scroll-view icon indicating copy to clipboard operation
react-native-keyboard-aware-scroll-view copied to clipboard

IOS screen jumping when scrolling from the bottom or top of a Textinput

Open alelaru opened this issue 2 years ago • 1 comments

This was an issue that is already solved in this issue but the name is a bit tricky [https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues/88] i made it to for people to find it easily

This is done because of keyboardDismissMode=#"on-drag"

Solution: enableResetScrollToCoords=true (In my case i just assign it for IOS)

This just happens when there are multiple elements and you need to actually scroll inside the KeyboardAware, if few elements are there and you don't need to scroll it will work perfectly

alelaru avatar Mar 17 '23 10:03 alelaru

Alternative "solution" (workaround):

bounces={false}

eightyfive avatar Mar 28 '23 05:03 eightyfive