Skip to content

Instantly share code, notes, and snippets.

@mattrob33
Created June 14, 2023 01:44
Show Gist options
  • Save mattrob33/efb2fc6213e08fb863bfd5833bee688c to your computer and use it in GitHub Desktop.
Save mattrob33/efb2fc6213e08fb863bfd5833bee688c to your computer and use it in GitHub Desktop.
clickable
inline fun Modifier.clickable(crossinline onClick: () -> Unit): Modifier = composed {
clickable(
indication = rememberRipple(),
interactionSource = remember { MutableInteractionSource() }
) {
onClick()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment