我使用的是Bottom Tabs Navigator,但它有一些无法隐藏的标题:
Bottom Tabs Navigator
我看到有tabBarShowLabel,但没有什么标签特别
tabBarShowLabel
p1iqtdky1#
tabBarShowLabel选项用于指定是否要在带有图标的底部选项卡内显示标签。您可以像这样使用headerShown:
headerShown
<Tab.Screen name="Navigator" component={YourComponent} options={() => { // or just options={{headerShown: false}} return { headerShown: false, ... ), }; }} />
1条答案
按热度按时间p1iqtdky1#
tabBarShowLabel
选项用于指定是否要在带有图标的底部选项卡内显示标签。您可以像这样使用
headerShown
: