You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm trying to use TrueSheet with a full-height multiline TextInput for editing notes, and I'm running into a layout issue on Android that I can't figure out.
Environment
@lodev09/react-native-true-sheet: 3.10.0
React Native: 0.81.0 (New Architecture / Fabric enabled)
Platform: Android (tested on emulator and physical device)
When the keyboard opens inside a TrueSheet with scrollable enabled, the content container does not shrink to account for the keyboard. Children with flexGrow: 1 retain their original height and extend behind the keyboard.
I added debug background colors to visualize the issue (see video):
Blue = content wrapper View (flexGrow: 1)
Red = multiline TextInput (flexGrow: 1)
When the keyboard opens, both blue and red areas keep their full size — the red TextInput bottom edge disappears behind the keyboard.
Observe that the blue container and red TextInput do not resize — their bottom edges extend behind the keyboard
Expected behavior
When the keyboard opens, the content container inside TrueSheetContentViewNativeComponent should shrink so that children with flexGrow: 1 adapt to the reduced available space. The footer already repositions above the keyboard correctly, but the main content area does not.
Is there a recommended way to handle this?
Am I missing something in the configuration, or is this a limitation on Android?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! I'm trying to use TrueSheet with a full-height multiline TextInput for editing notes, and I'm running into a layout issue on Android that I can't figure out.
Environment
When the keyboard opens inside a TrueSheet with scrollable enabled, the content container does not shrink to account for the keyboard. Children with
flexGrow: 1retain their original height and extend behind the keyboard.I added debug background colors to visualize the issue (see video):
When the keyboard opens, both blue and red areas keep their full size — the red TextInput bottom edge disappears behind the keyboard.
Minimal reproduction:
Steps to reproduce:
Expected behavior
When the keyboard opens, the content container inside TrueSheetContentViewNativeComponent should shrink so that children with
flexGrow: 1adapt to the reduced available space. The footer already repositions above the keyboard correctly, but the main content area does not.Is there a recommended way to handle this?
Am I missing something in the configuration, or is this a limitation on Android?
Screen.Recording.2026-04-16.at.18.20.50.mov
Beta Was this translation helpful? Give feedback.
All reactions