如何在React-native中从顶部隐藏createMaterialTopTabNavigator?

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

我希望createMaterialTopTabNavigator应该被隐藏,如何做到这一点


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

  }
  }
)

react-native react-navigation
1个回答
0
投票

您可以做:

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

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

希望他们会像在tabBarVisible中一样添加一个createBottomTabNavigator道具

© www.soinside.com 2019 - 2024. All rights reserved.