我使用了 createBottomTabNavigator,但无法隐藏特定屏幕上的底部应用栏
const StackHome = createStackNavigator(
{
Home: Home,
Autor: Autor,
Publicacion: Publicacion,
Comentarios: {
screen: Comentarios,
navigationOptions:{
// this should do the work, but it doesn't
tabBarVisible: false
}
}
}
);
Run Code Online (Sandbox Code Playgroud)