Skip to content

Instantly share code, notes, and snippets.

@cp-radhika-s
Created October 5, 2022 11:41
Show Gist options
  • Save cp-radhika-s/feae76d9a5338bfde8d489b10670bf20 to your computer and use it in GitHub Desktop.
Save cp-radhika-s/feae76d9a5338bfde8d489b10670bf20 to your computer and use it in GitHub Desktop.
Box(
modifier = Modifier
.background(color = pink, RoundedCornerShape(cornerRadius))
.size(100.dp)
.clip(RoundedCornerShape(cornerRadius))
.clickable(
interactionSource = interactionSource,
indication = rememberRipple()
) {
//Clicked
}
.padding(horizontal = 20.dp),
contentAlignment = Alignment.Center
) {
Text(
text = "Click!",
color = Color.White
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment