1

bottom barbottom bar herecode screenshot

     "@react-navigation/material-bottom-tabs": "^6.2.11",
     "@react-navigation/native": "^6.1.2",

tried tabBarOptions,activeTintColor.

  • Welcome! Can you please read about [the problems with images of text](https://meta.stackoverflow.com/a/285557/11107541) and then [edit](https://stackoverflow.com/posts/75306871/edit) to add transcriptions of your images of text as actual text? Perhaps useful: [/help/formatting](https://stackoverflow.com/help/formatting). – RubenSmn Feb 05 '23 at 17:15

2 Answers2

1

Delete "activeBackgroundColor". if there is no code, add "activeBackgroundColor:'transparent'"

Yücel
  • 31
  • 7
0

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

Jan G-M
  • 93
  • 1
  • 8