By default the selected tab underlined color is white, but i want to change to Black using "indicatorColor "
But in material 3 indicatorColor is exist anymore is there any other ways to do it
Image link click here
Trying to change the selected tab's underlined color to balck
In Material 3, Tab Row has the following signature
Inside the secondIndicator method of TabRowDefaults, you can pass your desired colour as an argument here. What i did is , i copied this composable, which was passed as default in the method signature, added my own custom colour.
if you have multiple usage of TabRow then you can wrap above TabRow inside your own custom composable which accepts colour as one of its parameter.