React Native:键盘打开时底部选项卡导航器向上移动

问题描述 投票:0回答:1

我正在开发一个 React Native 项目,其中使用底部选项卡导航器。 当我在没有底部选项卡的页面上打开键盘,然后使用手势导航回选项卡导航器页面时,底部选项卡会向上移动键盘的高度。

我用过

  • 反应原生:“0.72.10”,
  • 反应本机屏幕:“^3.22.1”,
  • @react-navigation/bottom-tabs:“^6.5.11”,
ios react-native keyboard react-navigation-bottom-tab
1个回答
0
投票

使用此属性tabBarHideOnKeyboard 底部选项卡导航器:https://reactnavigation.org/docs/bottom-tab-navigator/

   <Tab.Navigator
      initialRouteName="Wifi"
      screenOptions={{
        tabBarActiveTintColor: Config.themeColor,
        tabBarHideOnKeyboard : true,
        tabBarInactiveTintColor: 'lightgray',
        headerTintColor: '#fff',
        headerStyle: {
          backgroundColor: Config.themeColor,
        },
        tabBarStyle:{backgroundColor:Config.themeColor}
      }}>
© www.soinside.com 2019 - 2024. All rights reserved.