react-native-keyboard-aware-scroll-view
react-native-keyboard-aware-scroll-view copied to clipboard
A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput.
**Using:** "react-native-keyboard-aware-scroll-view": "^0.9.5", "react-native": "0.67.4" **Replicated with:** iOS and Android devices. **Code:** ``` const scrollToInput = React.useCallback((reactNode: number | null) => { currentInputScroll.current._internalFiberInstanceHandleDEV.memoizedProps.scrollToFocusedInput( reactNode, ); }, []); (currentInputScroll.current = ref)}>...
->Fix children not rendering anything after upgrading to RN 0.63.0 ->Fix from https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues/429#issuecomment-631299411
Added insetOnly option. When enabled HOC only adds content inset if keyboard opened. Works well and useful when TexiInput initially visible on the screen. With inset iOS scrolls to it...
Fixes https://github.com/APSL/react-native-keyboard-aware-scroll-view/issues/481 Also referenced here https://github.com/facebook/react-native/issues/31413 Babel somehow does not like async functions having params with default values. Downgrading Babel did not work for me, but removing the default param...
Improves the typings of `KeyboardAwareFlatList` and `KeyboardAwareSectionList`
Screen is bouncing up and down when jumping to any text input
As the video shown, the view scroll under the keyboard after the first key pressed on iOS. Could someone suggest a solution? Thanks in advance. App run on iPhone 13...
On long forms with many TextInputs, it would be preferred that the view stays where it is when the keyboard is closed, it doesn't scroll back to the original position...
Warning: VirtualizedLists should never be nested inside plain ScrollViews with the same orientation
I am getting this warning since the new expo SDK 36 update. I was able to solve these warnings by wrapping every `` with `` but I can't seem to...