Does somebody know how I can set an equivalent of ...
# compose
m
Does somebody know how I can set an equivalent of
android:background="?selectableItemBackground"
on
Text
or
ClickableText
elements for example?
c
If you want to show the ripple effect, you can do this:
Copy code
.clickable(
  interactionSource = remember { MutableInteractionSource() },
  indication = rememberRipple()
) {
  // handle click
}
Ripple can be customised, you can add bounded, radius and color parameters.
👍 1