试图在v6 中的Tab导航中隐藏标题和选项卡
<Tab.Screen
name="LoginScreens"
component={LoginStackScreen}
options={{tabBarVisible: false}}
/>
但此处tabBarVisible不工作
经过研究发现了与v5 不同的解决方案
<Tab.Navigator
screenOptions={{
headerShown: false,
}}>
<Tab.Screen
name="LoginScreens"
component={LoginStackScreen}
options={{
tabBarStyle: {display: 'none'},
}}
/>
</Tab.Navigator>
tabBarStyle:{display:'none'}隐藏选项卡和页眉Shown:false隐藏所有页面的页眉