首页 > 解决方案 > 如何在 React-native 中从顶部隐藏 createMaterialTopTabNavigator?

问题描述

我想隐藏 createMaterialTopTabNavigator 怎么做


const TopTabNavigation = createMaterialTopTabNavigator({
  one:LogedInChatBot,
  two:ScreenTwo,
  three:ScreenThree
},{
  tabBarOptions:{

  }
  }
)

标签: react-nativereact-navigation

解决方案


你可以做:

  tabBarOptions: {
    style: {
      display: 'none'
    }
  }

来源:https ://github.com/react-navigation/react-navigation/issues/5428#issuecomment-517112669-permalink

希望他们会tabBarVisible像在createBottomTabNavigator


推荐阅读