onLoadStop property
Event fired when the WebView
finishes loading an url
.
NOTE for Web: If window.location.href
isn't accessible inside the iframe,
the url
parameter will have the current value of the iframe.src
attribute.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebViewClient.onPageFinished)
- iOS (Official API - WKNavigationDelegate.webView)
- MacOS (Official API - WKNavigationDelegate.webView)
- Web (Official API - Window.onload)
- Windows (Official API - ICoreWebView2.add_NavigationCompleted)
Implementation
final void Function(T controller, WebUri? url)? onLoadStop;