Skip to content

Latest commit

 

History

History
59 lines (45 loc) · 3.71 KB

webview.md

File metadata and controls

59 lines (45 loc) · 3.71 KB

WebView

Inheritance: Element -> NavigableElement -> VisualElement -> View -> View
Xamarin.Forms documentation: WebView API / Guide

For details on how the control actually works, please refer to the Xamarin.Forms documentation

Constructors

Constructors Description
WebView(source: WebViewSource) Define a WebView widget with a WebViewSource
WebView(html: string, ?baseUrl: string) Define a WebView widget with html content and a base URL for all links inside
WebView(uri: Uri) Define a WebView with a URI
WebView(url: string) Define a WebView with a URL as string

Properties

Properties Description
canGoBack(value: bool) Sets if the user can navigate back
canGoForward(value: bool) Sets if the user can navigate forward
cookies(value: CookieContainer) Sets the cookies
enableZoomControls(value: bool) Sets if the zoom controls are enabled
displayZoomControls(value: bool) Sets if the zoom controls are shown on the screen
reference(value: ViewRef<WebView>) Sets a ViewRef instance to retrieve the Xamarin.Forms.WebView instance associated to this widget

Events

Properties Description
onNavigating(onNavigating: WebNavigatingEventArgs -> ‘msg) Sets the event listener for the navigating event
onNavigated(onNavigated: WebNavigatedEventArgs -> ‘msg) Sets the event listener for the navigated event
onReloadRequested(onReloadRequested: ‘msg) Sets the event listener for the reload requested event

Usages

let cookies = CookieContainer()

WebView("https://fabulous.dev")
    .canGoBack(false) 
    .canGoForward(true)
    .cookies(cookies)
    .enableZoomControls(true)
    .displayZoomControls(false)
    .onNavigating(NavigatingMsg)
    .onNavigated(NavigatedMsg)
    .onReloadRequested(ReloadedMsg)

Get access to the underlying Xamarin.Forms.WebView

let webViewRef = ViewRef<WebView>()

WebView("https://fabulous.dev")
    .reference(webViewRef)