Files
NativeScript/tests/app/ui/html-view/htm-view.md
2016-07-06 16:09:11 +03:00

23 lines
476 B
Markdown

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