如何在 ReactNative Material Bottom Tabs 版本 6.2.10 中删除默认活动背景色

问题描述 投票:0回答:1

我想学习如何删除下图中的背景颜色。我已经尝试了文档中的所有道具,但没有任何效果。

react-native material-ui react-native-navigation react-navigation-v6
1个回答
0
投票

我在 Material Bottom Tabs Navigator v6.x 中遇到了同样的问题,我的解决方案是添加这个:

import { useTheme } from 'react-native-paper';

在我的底部选项卡组件中:

const theme = useTheme();

theme.colors.secondaryContainer = "transparent"

© www.soinside.com 2019 - 2024. All rights reserved.