Reputation: 49
bottom barbottom bar herecode screenshot
"@react-navigation/material-bottom-tabs": "^6.2.11",
"@react-navigation/native": "^6.1.2",
tried tabBarOptions,activeTintColor.
Upvotes: 1
Views: 544
Reputation: 103
This worked for me
import { useTheme } from 'react-native-paper';
const theme = useTheme();
theme.colors.secondaryContainer = "transparent"
https://github.com/callstack/react-native-paper/issues/3554
Upvotes: 1
Reputation: 61
Delete "activeBackgroundColor". if there is no code, add "activeBackgroundColor:'transparent'"
Upvotes: 1