How To change ripple color of a Card?
# compose
a
How To change ripple color of a Card?
f
Copy code
Card(
    modifier = Modifier.clickable(
        indication = rememberRipple(color = Color.Cyan),
        onClick = { /* Do something */ },
    )
) {
    /* Card content */
}
Ripple is bound to clickable modifier.
a
u_U not so much intuitive...
it works like a charm, thanks
👍 1
114 Views