Skip to content

Instantly share code, notes, and snippets.

@plnice
Created February 1, 2022 20:11
Show Gist options
  • Save plnice/ca950489d7a8736e19a5477be0c3e333 to your computer and use it in GitHub Desktop.
Save plnice/ca950489d7a8736e19a5477be0c3e333 to your computer and use it in GitHub Desktop.
@Composable
fun ClickableLinkRow(url: String) {
val customTabs = LocalCustomTabs.current
Row(
modifier = Modifier
.clickable { customTabs.launch(url) }
) {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment