I have an onClick listener right now and it's draw...
# compose
c
I have an onClick listener right now and it's drawing a ripple with straight edges. How can I turn it into a circular ripple?
b
Iirc there is a ripple modifier that can be adjusted
l
Pass bounded = false to rememberRipple() afaik.
t
Are you using
Modifier.clickable {}
? If yes you can use
Modifier.clip(CircleShape).clickable {}
👍 2