我制作了如下的tabBar。
我正在使用expo的react-native。但是我想从tabBar中删除图标,因为它只有文本。我的tabBar代码看起来像下面。我如何从tabBar中删除图标?
<Tabs.Navigator
screenOptions={{
headerShown: false,
tabBarActiveTintColor: `${colors.vivid}`,
tabBarActiveBackgroundColor: `${colors.light}`,
tabBarStyle: {
backgroundColor: "white",
height: 60,
},
tabBarLabelStyle: {
fontFamily: "Katuri",
fontSize: 18,
},
}}
>
<Tabs.Screen
name="사진"
options={{
tabBarIcon: ({ focused, color, size }) => (
<Ionicons name={"camera"} color={color} size={18} />
),
}}
1条答案
按热度按时间xoefb8l81#
在
options
属性中为tabBarIcon
返回null
。