【发布时间】:2021-05-03 22:54:51
【问题描述】:
【问题讨论】:
-
您没有提供有关您如何实现该标签栏(库、版本、代码)的任何信息。
标签: react-native navigation expo
【问题讨论】:
标签: react-native navigation expo
在您的TabBar 配置中设置title=""。这不会显示标签。
查看工作示例here
<Tab.Navigator
screenOptions={({ route }) => ({
title: '', // This is the main part...
tabBarIcon: ({ focused, color, size }) => GiveIcon({ route, focused, color, size }) })}
tabBarOptions={{
activeTintColor: 'tomato',
inactiveTintColor: 'gray',
}}>
<Tab.Screen name="Home" component={HomeScreen} />
<Tab.Screen name="Settings" component={SettingsScreen} />
</Tab.Navigator>
【讨论】: