https://kotlinlang.org logo
Title
u

user

06/23/2022, 9:31 PM
Not to consume the click everywhere on ClickableText I have some text with some parts clickable. What I have done is a composable that with a previously built annotated string displays the message that has some url sections: @Composable private fun MyClickableText( annotatedString: AnnotatedString, modifier: Modifier = Modifier, ) { ClickableText( text = annotatedString, onClick = { annotatedString.getStringAnnotations( tag = "URL", start = it, end = it...