我在使用 React Navigation Material Bottom Tabs Navigator 时遇到一些样式问题。有一个背景,它会自动应用于活动选项卡,但我无法对其进行样式设置(我在下图中突出显示了它)。
有人可以帮忙吗?我的代码如下:
<Tab.Navigator
initialRouteName="Home"
labeled={false}
shifting={false}
activeColor="#333"
inactiveColor="#999999"
inactiveBackgroundColor='#000'
barStyle={{
paddingHorizontal: 10,
backgroundColor: '#ffffff',
}}
>
<Tab.Screen
name='Home'
component={HomeScreen}
options={{
tabBarLabel: 'Home',
tabBarIcon: ({ color }) => (
<MaterialCommunityIcons name="home" color={color} size={26} />
),
}}
/>
</Tab.Navigator>
Run Code Online (Sandbox Code Playgroud)
我已经阅读了所有 React Navigation 文档,但没有提及。