我想将createMaterialTopTabNavigator隐藏起来
const TopTabNavigation = createMaterialTopTabNavigator({
one:LogedInChatBot,
two:ScreenTwo,
three:ScreenThree
},{
tabBarOptions:{
}
}
)
答案 0 :(得分:0)
您可以这样做:
tabBarOptions: {
style: {
display: 'none'
}
}
来源:https://github.com/react-navigation/react-navigation/issues/5428#issuecomment-517112669-permalink
希望他们会像tabBarVisible
一样添加一个createBottomTabNavigator
道具