Is it possible to have a circular ripple/clickable...
# compose
y
Is it possible to have a circular ripple/clickable effect on clickable items? the normal square one doesnt look right on some places
🙏 1
a
Yes. it is called unbound ripple
Copy code
.clickable(
    interactionSource = remember { MutableInteractionSource() },
    indication = rememberRipple(bounded = false)
)
🙌 1