如何通过在Wix/react-native-navigation中推送新视图来覆盖标签栏以进行本机反应?
我可以使用 API 推送新视图,但我找不到任何能够在覆盖标签栏的情况下推送的方法。
如何通过在Wix/react-native-navigation中推送新视图来覆盖标签栏以进行本机反应?
我可以使用 API 推送新视图,但我找不到任何能够在覆盖标签栏的情况下推送的方法。
在您推送的新屏幕中,添加tabBarHidden: true
到navigatorStyle
.
class NextScreen extends Component {
static navigatorStyle = {
tabBarHidden: true,
drawUnderTabBar: true // Since we want to render the screen instead of the tabBar
};
}
更多样式选项可以在文档中找到