小编Bry*_*Bry的帖子

如何删除 React Navigation Material 底部选项卡导航器中的活动图标背景

我在使用 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 文档,但没有提及。

reactjs react-native material-ui react-navigation

4
推荐指数
1
解决办法
1408
查看次数