Regarding unbound ripple, is there a way to control which composable can be drawn over? In this simp...
l
Regarding unbound ripple, is there a way to control which composable can be drawn over? In this simplified code snippet, the ripple from the Text overlaps the TextButton, but it looks weird since TextButton has a different background color
I can specify a small radius, but limiting drawing above certain nodes would be preferable
a
the ripple is drawn as a foreground of the Text. if you want TextButton to be drawn after the ripple of Text you can try to set Modifier.zIndex(1f) on it
l
That works. Thank you!