Files
NativeScript/tests/app/ui/html-view/htm-view.md
Panayot Cankov e135c20b14 Rename the files
2016-05-26 14:30:25 +03:00

22 lines
462 B
Markdown

---
nav-title: "HtmlView How-To"
title: "html-view"
description: "Examples for using HtmlView"
previous_url: /ApiReference/ui/html-view/HOW-TO
---
# 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'/>