1

如何通过在Wix/react-native-navigation中推送新视图来覆盖标签栏以进行本机反应?

我可以使用 API 推送新视图,但我找不到任何能够在覆盖标签栏的情况下推送的方法。

4

1 回答 1

1

在您推送的新屏幕中,添加tabBarHidden: truenavigatorStyle.

class NextScreen extends Component {
  static navigatorStyle = {
    tabBarHidden: true,
    drawUnderTabBar: true // Since we want to render the screen instead of the tabBar
  };
}

更多样式选项可以在文档中找到

于 2017-04-09T05:38:31.480 回答