在嵌套的反应导航中,额外的标题空间位于顶部

问题描述 投票:0回答:1

屏幕顶部会出现额外的空标题空间

我尝试为帖子屏幕制作标题null,但其他两个屏幕仍然有空白空间。

enter image description here

 const Posts=createStackNavigator({
    Posts:{screen:createMaterialTopTabNavigator(screens,{
                        tabBarOptions: {
                          scrollEnabled: true,
                        },
                        animationEnabled:false,
                      })},
    VideoDetailScreen:{screen:VideoDetail},
    NewsDetailScreen:{screen:NewsDetail},
  });

  const AppContainer = createAppContainer(Posts);
react-native react-navigation
1个回答
0
投票

我通过向this workaround添加一个选项修复了navigationOptions,如下所示:

navigationOptions: {
    ...
    headerForceInset: { top: 'never', bottom: 'never' },
},
© www.soinside.com 2019 - 2024. All rights reserved.