反应导航BottomTabNavigator已停产

时间:2020-01-24 10:58:09

标签: react-native react-navigation expo

我使用的是最新的稳定版本,并且仅在生产中(在所有手机上)出现。

我添加了空白页,以确保其不是页面的高度

代码:

const TestStackNavigatorr =  createBottomTabNavigator({
  HOME: {
    screen: Overview,
  }
})
const App = createAppContainer(TestStackNavigatorr)

export default App

开发图片:

development - OK

生产:

production - cut off

1 个答案:

答案 0 :(得分:0)

我发现了问题。我必须删除app.json中的Statusbar配置,然后将此视图放入Constants.StatusBarHeight。

 return <View style={{flex: 1, backgroundColor: 'red' }}>
          <View style={{height:Constants.statusBarHeight, backgroundColor: "#2F5851"}}/>
          <WrappedComponent />
   </View>