Files
NativeScript/apps/tests/ui/html-view/htm-view.md
2016-05-02 10:45:50 +03:00

21 lines
414 B
Markdown

---
nav-title: "HtmlView How-To"
title: "html-view"
description: "Examples for using HtmlView"
---
# HtmlView
Using a HtmlView requires the html-view module.
<snippet id='htmlview-require'/>
### Declaring a HtmlView.
``` XML
<Page>
{%raw%}<HtmlView html="{{ htmlString }}" />{%endraw%}
</Page>
```
### Creating a HtmlView
<snippet id='htmlview-create'/>
### Using HtmlView
<snippet id='htmlview-using'/>