推送视图如何覆盖wix / react-native-navigation中的tabbar以进行本机响应

时间:2017-03-24 03:54:59

标签: react-native react-native-navigation

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

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

1 个答案:

答案 0 :(得分:1)

在推送的新屏幕中,将tabBarHidden: true添加到navigatorStyle

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

可以在Text Component Line Number

中找到更多样式选项