using a Surface (or other means), is it at all pos...
# compose
o
using a Surface (or other means), is it at all possible to have a slightly transparent background, without having the shadows show on the inside?
Copy code
Surface(
    modifier = Modifier.fillMaxWidth(),
    color = White.copy(alpha = 0.2F),
    elevation = 2.dp,
    shape = RoundedCornerShape(8.dp),
) {
solid background vs alpha=0.2
g
It happens because of
elevation
a
hey, did you manage to find a solution to this?