hi i have to develop text witth link and different...
# compose
a
hi i have to develop text witth link and different color.. i can use row.. but is there a Spannable alternative in compose?
f
you can use
buildAnnotatedString
and then
addStyle
within the builder to make the text colorful, clickable etc.
✔️ 2
a
interesting
c
I’ve got a library, Thistle that wraps the Compose AnnotatedString and gives you a simple markup language to create that styled text
a
Thanks