pirmax
pirmax

Reputation: 2153

NativeScript - Convert HTML string to HTML

I use NativeScript to develop a mobile application. I have a ListView with Label and I want convert text with HTML to HTML.

enter image description here

I try to use [innerHTML] but it's doesn't works.

Upvotes: 0

Views: 863

Answers (2)

Harrison O
Harrison O

Reputation: 1220

Try this

<HtmlView html="{{ htmlString }}"></HtmlView>

more info here

Upvotes: 1

Baskar Rao
Baskar Rao

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

Related Questions