Arpit Shukla
01/21/2022, 6:27 PM"This is a <b>bold</b> text."
In View world I was able to directly use this resource and put it in a TextView as it accepts a CharSequence
for text. In Compose, however, I need to create an AnnotatedString
out of this resource to display it in a Text composable. How to do this?rsktash
01/21/2022, 7:24 PMCasey Brooks
01/21/2022, 7:47 PMDavid W
01/21/2022, 7:58 PMText("This is a <b>bold</b> text.".parseHtml())
Colton Idle
01/22/2022, 7:31 AM