我使用的是最新的稳定版本,并且仅在生产中(在所有手机上)出现。
我添加了空白页,以确保其不是页面的高度
代码:
const TestStackNavigatorr = createBottomTabNavigator({
HOME: {
screen: Overview,
}
})
const App = createAppContainer(TestStackNavigatorr)
export default App
开发图片:
生产:
答案 0 :(得分:0)
我发现了问题。我必须删除app.json中的Statusbar配置,然后将此视图放入Constants.StatusBarHeight。
return <View style={{flex: 1, backgroundColor: 'red' }}>
<View style={{height:Constants.statusBarHeight, backgroundColor: "#2F5851"}}/>
<WrappedComponent />
</View>