react-native-controlled-mentions icon indicating copy to clipboard operation
react-native-controlled-mentions copied to clipboard

Keyboard pushes tab bar

Open edapess opened this issue 2 years ago • 3 comments

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

  1. at first we had adjustResize in our AndroidManifest so I tried to change that to adjustPan, but it didn't help
  2. other workaround was to listen to Keyboard and hide programmatically tab bar when Keyboard is shown, didn't help
  3. tried to use KeyboardAvoidingView but it didn't help cz I think we had to wrap InputText with KeyboardAvoidingView and not MentionInput.

edapess avatar Aug 21 '23 13:08 edapess

tabBarOptions={{
      keyboardHidesTabBar: true
   }}  

fukemy avatar Sep 08 '23 02:09 fukemy

tabBarOptions={{
      keyboardHidesTabBar: true
   }}  

it's the first thing I checked, I open this issue cz I tried all possible things that are available

edapess avatar Sep 15 '23 12:09 edapess

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.

dabakovich avatar Sep 16 '23 12:09 dabakovich