Fixing spaces after urls

This commit is contained in:
Vitor Pamplona
2023-03-17 19:09:43 -04:00
parent 53705f214a
commit d38a7169b8
2 changed files with 3 additions and 3 deletions
@@ -12,7 +12,7 @@ fun ClickableUrl(urlText: String, url: String) {
val uri = LocalUriHandler.current
ClickableText(
text = AnnotatedString("$urlText "),
text = AnnotatedString(urlText),
onClick = { runCatching { uri.openUri(url) } },
style = LocalTextStyle.current.copy(color = MaterialTheme.colors.primary)
)