In Jetpack Compose the clickable
Modifier will by default use LocalIndication.current
and show a ripple that is bound to the border. That looks great almost always, but there are some circumstances where a rounded, unbound ripple looks better. Back in View Android we would've used android:background="?attr/selectableItemBackgroundBorderless
to achieve this behaviour. How can we do it in compose?
Example [source]: