We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not hiding the tab bar when the keyboard opens.
Describe what you expected to happen:
It should hide the tab bar when the keyboard opens and show again when keyboard hides.
----> androidManifest.xml <activity android:name=".MainActivity" android:label="@string/app_name" android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" android:launchMode="singleTask" android:exported="true" android:windowSoftInputMode="adjustResize"> </activity>
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs'; const Tab = createBottomTabNavigator(); <Tab.Navigator initialRouteName={BottomTabs.Remotes} screenOptions={() => ({ headerShown: false, tabBarHideOnKeyboard: true, })} tabBar={props => <FooterTab {...props} theme={theme} />}> <Tab.Screen name={'Scenes'} options={{title: 'Scenes'}} component={ScenesNavigation} /> </Tab.Navigator>
The text was updated successfully, but these errors were encountered:
any update on this ?
Sorry, something went wrong.
No branches or pull requests
Bug
Environment info
Steps To Reproduce
Not hiding the tab bar when the keyboard opens.
Describe what you expected to happen:
It should hide the tab bar when the keyboard opens and show again when keyboard hides.
Reproducible sample code
The text was updated successfully, but these errors were encountered: