如何通过在Wix/react-native-navigation中推送新视图来覆盖标签栏以反应原生?
我可以使用API推送新视图,但我无法找到任何能够覆盖标签栏的方法。
答案 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
};
}
中找到更多样式选项