Reputation: 2153
I use NativeScript to develop a mobile application. I have a ListView with Label and I want convert text with HTML to HTML.
I try to use [innerHTML]
but it's doesn't works.
Upvotes: 0
Views: 863
Reputation: 1220
Try this
<HtmlView html="{{ htmlString }}"></HtmlView>
more info here
Upvotes: 1
Reputation: 470
You can try the HTMLView Control. Check the details here in the below documentation. https://docs.nativescript.org/ui/ns-ui-widgets/html-view
Upvotes: 1