react-native-modalbox
react-native-modalbox copied to clipboard
Shrink height after keyboard shown up
I put an TextInput
inside modal, then everytime i focus on it, the keyboard shownup, then modal shrink down the height = statusbar height.
Tested on iOS
Getting a similar issue with the keyboard where the modal will slide down a little and stay in that position.
@Tom29 try setting prop keyboardTopOffset
to 0.
if keyboardTopOffset={0}
does not work ,
try position="top"
Solved my question
Had the same issue, keyboardTopOffset={0}
worked for me.
I think prefer to combine both which resolved problem :D
position="top" keyboardTopOffset={0}