小编Roc*_*cco的帖子

如何隐藏特定屏幕上的底部标签栏(react-navigation 3.x)

我使用了 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)

javascript react-native react-navigation

1
推荐指数
1
解决办法
8502
查看次数