I'm trying to add some elevation or shadow just in the bottom of an element. For this element I'm using a Tab composable. How can I add this elevation/shadow just at the bottom as the image attached?
If you can see, the Text Field element has shadow around. For this element I add
shape = 8.dp,
elevation = 6.dp
Inside a Surface element. But I can't use this same attributes in a Tab composable, besides, the shape and elevation adds around all the component, but I just want the "shadow" at the bottom of the Users and Pending users tab.
For this implementation I'm using Jetpack Compose
