APSL / react-native-keyboard-aware-scroll-view

A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput.
MIT License
5.24k stars 643 forks source link

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

Open alelaru opened 1 year ago

alelaru commented 1 year ago

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

eightyfive commented 1 year ago

Alternative "solution" (workaround):

bounces={false}