Skip to content

Instantly share code, notes, and snippets.

@cp-radhika-s
Created October 5, 2022 11:40
Show Gist options
  • Save cp-radhika-s/b4c4690ceb9bb7c9ef9f42705e02aa09 to your computer and use it in GitHub Desktop.
Save cp-radhika-s/b4c4690ceb9bb7c9ef9f42705e02aa09 to your computer and use it in GitHub Desktop.
@Composable
fun ShakeEffect(){
Button(onClick = {
//Clicked
}, shape = RoundedCornerShape(12.dp), contentPadding = PaddingValues(16.dp),
modifier = Modifier.shakeClickEffect()) {
Text(text = "Click me")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment