<https://github.com/MohamedRejeb/Ksoup> perhaps? <...
# multiplatform
r
https://github.com/MohamedRejeb/Ksoup perhaps? @Beverly May Orofeo
👍 1
l
Nice. Thanks for this. I was not aware of it.
b
Not really what I need, I needed the html format to display as text in jetpack compose
m
@Beverly May Orofeo You can use this library for that: https://github.com/MohamedRejeb/Compose-Rich-Editor
Copy code
val state = rememberRichTextState()

LaunchedEffect(htmlString) {
    state.setHtml(htmlString)
}

RichText(
    state = state,
)