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

Properties

Events

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)

Last updated