Skip to content

Instantly share code, notes, and snippets.

@mattrob33
Created June 14, 2023 01:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattrob33/92583114ac0b54801ca22c2eed63fb49 to your computer and use it in GitHub Desktop.
Save mattrob33/92583114ac0b54801ca22c2eed63fb49 to your computer and use it in GitHub Desktop.
@Composable fun ClickableText(
text: String,
onClick: () -> Unit
) {
Text(
text = text,
modifier = Modifier.clickable(onClick)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment