WebView
<WebView>
is a UI component that lets you show web content in your app.
You can pull and show content from a URL or a local HTML file, or you can render static HTML content.
See also: HtmlView.
<WebView row="1" loaded="onWebViewLoaded" id="myWebView" src="{{ webViewSrc }}" />
<WebView
[src]="webViewSrc"
(loadStarted)="onLoadStarted($event)"
(loadFinished)="onLoadFinished($event)"
>
</WebView>
<WebView src="http://nativescript-vue.org/" />
<WebView src="~/html/index.html" />
<WebView src="<div><h1>Some static HTML</h1></div>" />
<webView src="http://nativescript.org/" />
<webView src="~/html/index.html" />
<webView src="<div><h1>Some static HTML</h1></div>" />
<webView src="http://nativescript.org/" />
<webView src="~/html/index.html" />
<webView src="<div><h1>Some static HTML</h1></div>" />
To be able to use gestures in WebView component on Android, we should first disabled the zoom control. To do that we could access the android property and with the help of setDisplayZoomControls to set this control to false. |
Props
Name | Type | Description |
---|---|---|
|
|
Gets or sets the displayed web content. + Valid values: an absolute URL, the path to a local HTML file, or static HTML. |
|
|
Additional inherited properties not shown. Refer to the API Reference |
Events
Name | Description |
---|---|
|
Emitted when the page has started loading in the |
|
Emitted when the page has finished loading in the |