React native 如何在React Native中的“材质顶部”选项卡导航器中隐藏选项卡栏

React native 如何在React Native中的“材质顶部”选项卡导航器中隐藏选项卡栏,react-native,navigation,react-navigation,react-navigation-v5,React Native,Navigation,React Navigation,React Navigation V5,基本上我想从家里过渡到聊天室 我实现了从主页到聊天页面的过渡。但在我的情况下,我的顶栏固定在顶部 我的导航 <NavigationContainer> <Tab.Navigator removeClippedSubviews={true} tabBarOptions={{ renderIndicator: () => null, }}> <Tab.Scre

基本上我想从家里过渡到聊天室

我实现了从主页到聊天页面的过渡。但在我的情况下,我的顶栏固定在顶部

我的导航

   <NavigationContainer>
      <Tab.Navigator
        removeClippedSubviews={true}
        tabBarOptions={{
          renderIndicator: () => null,
        }}>
        <Tab.Screen name="Camera" component={HomeScreen} />
        <Tab.Screen name="Home" component={AppTabScreen} />
        <Tab.Screen name="Chat" component={SettingsScreen} />
      </Tab.Navigator>
    </NavigationContainer>

无效的
}}>