hi! ```Card( modifier = Modifier.clickable(onC...
# compose
c
hi!
Copy code
Card(
    modifier = Modifier.clickable(onClick = { someaction() }).ripple()
)
onclick isn't working, it shows the ripple but not perform the action
c
thanks!!