I'm using react-native-pell-rich-editor
inside a scrollable middle section of my page. When the keyboard opens, I want the RichEditor to automatically scroll up so that the typing area stays visible, just above the keyboard.
However, when I use automaticallyAdjustKeyboardInsets
, it causes excessive scrolling and hides the typing area. On the other hand, when I use KeyboardAvoidingView
, it doesn't scroll automatically, requiring manual scrolling. How can I ensure the RichEditor properly auto-scrolls into view when the keyboard opens?