Ripple with rounded corners Jetpack Compose
Starting with M2 1.0.0-beta08 you can solve this issue using the onClick lambda parameter in the Card instead of the clickable modifier: Card( shape = RoundedCornerShape(30.dp), modifier = Modifier .fillMaxWidth() .padding(10.dp), onClick = { show = !show } ){ //card content } If you need the clickable or the combinedClickable modifier you have to use … Read more