react-native-controlled-mentions
react-native-controlled-mentions copied to clipboard
Keyboard pushes tab bar
In Android when we are trying to use MentionInput we are facing an issue, so Input pushes tab bar before it hides
I tried several solutions
- at first we had
adjustResizein our AndroidManifest so I tried to change that toadjustPan, but it didn't help - other workaround was to listen to
Keyboardand hide programmatically tab bar when Keyboard is shown, didn't help - tried to use
KeyboardAvoidingViewbut it didn't help cz I think we had to wrapInputTextwithKeyboardAvoidingViewand notMentionInput.
tabBarOptions={{
keyboardHidesTabBar: true
}}
tabBarOptions={{ keyboardHidesTabBar: true }}
it's the first thing I checked, I open this issue cz I tried all possible things that are available
Hey @edapess, thanks for your feedback!
Please look into the pre-release third version of the library. It allows you to use the original TextInput component instead of the MentionInput wrapper, and probably could help you in your case.