Я не могу скрыть навигатор верхней панели, используя свойство tabBarVisible.
Мой навигатор верхнего уровня:
export default createAppContainer(createSwitchNavigator({
AuthLoading: AuthLoadingScreen,
Main: MainTabNavigator,
Auth: AuthStack
},
{
initialRouteName: 'AuthLoading',
tabBarVisible:false
}
));
MainTabNavigator это:
export default createMaterialTopTabNavigator({
bottomNavigator,
Profile: Profile,
tempScreen: TempScreen
}, {
navigationOptions: ({ navigation }) => {
let tabBarVisible = true;
return {
tabBarVisible,
};
},
header:null,
tabBarOptions: {
showLabel: false,
showIcon:false
}
})