HtmlView UI component added + test

This commit is contained in:
Vladimir Enchev
2015-07-15 11:59:00 +03:00
parent 57312ef1f3
commit 835ab8c142
8 changed files with 73 additions and 9 deletions

View File

@ -6,7 +6,9 @@ declare module "ui/html-view" {
import dependencyObservable = require("ui/core/dependency-observable");
/**
* Represents a view with html content.
* Represents a view with html content. Use this component instead WebView when want to show just static HTML content.
* [iOS support](https://developer.apple.com/library/ios/documentation/UIKit/Reference/NSAttributedString_UIKit_Additions/#//apple_ref/occ/instm/NSAttributedString/initWithData:options:documentAttributes:error:)
* [android support](http://developer.android.com/reference/android/text/Html.html)
*/
export class HtmlView extends view.View {