import 'dart:io'; import 'dart:async'; import 'dart:collection'; import 'dart:typed_data'; import 'dart:convert'; import 'dart:core'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter/widgets.dart'; import 'package:html/parser.dart' show parse; import 'context_menu.dart'; import 'types.dart'; import 'in_app_browser.dart'; import 'webview_options.dart'; import 'headless_in_app_webview.dart'; import 'webview.dart'; import 'in_app_webview.dart'; import 'web_storage.dart'; import 'util.dart'; ///List of forbidden names for JavaScript handlers. const javaScriptHandlerForbiddenNames = [ "onLoadResource", "shouldInterceptAjaxRequest", "onAjaxReadyStateChange", "onAjaxProgress", "shouldInterceptFetchRequest", "onPrint", "androidKeyboardWorkaroundFocusoutEvent" ]; ///Controls a WebView, such as an [InAppWebView] widget instance, a [HeadlessInAppWebView] instance or [InAppBrowser] WebView instance. /// ///If you are using the [InAppWebView] widget, an [InAppWebViewController] instance can be obtained by setting the [InAppWebView.onWebViewCreated] ///callback. Instead, if you are using an [InAppBrowser] instance, you can get it through the [InAppBrowser.webViewController] attribute. class InAppWebViewController { WebView _webview; MethodChannel _channel; static MethodChannel _staticChannel = MethodChannel('com.pichillilorenzo/flutter_inappwebview_static'); Map javaScriptHandlersMap = HashMap(); // ignore: unused_field bool _isOpened = false; // ignore: unused_field dynamic _id; String _inAppBrowserUuid; InAppBrowser _inAppBrowser; ///Android controller that contains only android-specific methods AndroidInAppWebViewController android; ///iOS controller that contains only ios-specific methods IOSInAppWebViewController ios; WebStorage webStorage; InAppWebViewController(dynamic id, WebView webview) { this._id = id; this._channel = MethodChannel('com.pichillilorenzo/flutter_inappwebview_$id'); this._channel.setMethodCallHandler(handleMethod); this._webview = webview; this.android = AndroidInAppWebViewController(this); this.ios = IOSInAppWebViewController(this); this.webStorage = WebStorage(localStorage: LocalStorage(this), sessionStorage: SessionStorage(this)); } InAppWebViewController.fromInAppBrowser( String uuid, MethodChannel channel, InAppBrowser inAppBrowser) { this._inAppBrowserUuid = uuid; this._channel = channel; this._inAppBrowser = inAppBrowser; } Future handleMethod(MethodCall call) async { switch (call.method) { case "onHeadlessWebViewCreated": if (_webview != null && _webview is HeadlessInAppWebView) _webview.onWebViewCreated(this); break; case "onLoadStart": String url = call.arguments["url"]; if (_webview != null && _webview.onLoadStart != null) _webview.onLoadStart(this, url); else if (_inAppBrowser != null) _inAppBrowser.onLoadStart(url); break; case "onLoadStop": String url = call.arguments["url"]; if (_webview != null && _webview.onLoadStop != null) _webview.onLoadStop(this, url); else if (_inAppBrowser != null) _inAppBrowser.onLoadStop(url); break; case "onLoadError": String url = call.arguments["url"]; int code = call.arguments["code"]; String message = call.arguments["message"]; if (_webview != null && _webview.onLoadError != null) _webview.onLoadError(this, url, code, message); else if (_inAppBrowser != null) _inAppBrowser.onLoadError(url, code, message); break; case "onLoadHttpError": String url = call.arguments["url"]; int statusCode = call.arguments["statusCode"]; String description = call.arguments["description"]; if (_webview != null && _webview.onLoadHttpError != null) _webview.onLoadHttpError(this, url, statusCode, description); else if (_inAppBrowser != null) _inAppBrowser.onLoadHttpError(url, statusCode, description); break; case "onProgressChanged": int progress = call.arguments["progress"]; if (_webview != null && _webview.onProgressChanged != null) _webview.onProgressChanged(this, progress); else if (_inAppBrowser != null) _inAppBrowser.onProgressChanged(progress); break; case "shouldOverrideUrlLoading": String url = call.arguments["url"]; String method = call.arguments["method"]; Map headers = call.arguments["headers"]?.cast(); bool isForMainFrame = call.arguments["isForMainFrame"]; bool androidHasGesture = call.arguments["androidHasGesture"]; bool androidIsRedirect = call.arguments["androidIsRedirect"]; int iosWKNavigationType = call.arguments["iosWKNavigationType"]; ShouldOverrideUrlLoadingRequest shouldOverrideUrlLoadingRequest = ShouldOverrideUrlLoadingRequest( url: url, method: method, headers: headers, isForMainFrame: isForMainFrame, androidHasGesture: androidHasGesture, androidIsRedirect: androidIsRedirect, iosWKNavigationType: IOSWKNavigationType.fromValue(iosWKNavigationType)); if (_webview != null && _webview.shouldOverrideUrlLoading != null) return (await _webview.shouldOverrideUrlLoading( this, shouldOverrideUrlLoadingRequest)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser .shouldOverrideUrlLoading(shouldOverrideUrlLoadingRequest)) ?.toMap(); break; case "onConsoleMessage": String message = call.arguments["message"]; ConsoleMessageLevel messageLevel = ConsoleMessageLevel.fromValue(call.arguments["messageLevel"]); ConsoleMessage consoleMessage = ConsoleMessage(message: message, messageLevel: messageLevel); if (_webview != null && _webview.onConsoleMessage != null) _webview.onConsoleMessage(this, consoleMessage); else if (_inAppBrowser != null) _inAppBrowser.onConsoleMessage(consoleMessage); break; case "onScrollChanged": int x = call.arguments["x"]; int y = call.arguments["y"]; if (_webview != null && _webview.onScrollChanged != null) _webview.onScrollChanged(this, x, y); else if (_inAppBrowser != null) _inAppBrowser.onScrollChanged(x, y); break; case "onDownloadStart": String url = call.arguments["url"]; if (_webview != null && _webview.onDownloadStart != null) _webview.onDownloadStart(this, url); else if (_inAppBrowser != null) _inAppBrowser.onDownloadStart(url); break; case "onLoadResourceCustomScheme": String scheme = call.arguments["scheme"]; String url = call.arguments["url"]; if (_webview != null && _webview.onLoadResourceCustomScheme != null) { try { var response = await _webview.onLoadResourceCustomScheme(this, scheme, url); return (response != null) ? response.toJson() : null; } catch (error) { print(error); return null; } } else if (_inAppBrowser != null) { try { var response = await _inAppBrowser.onLoadResourceCustomScheme(scheme, url); return (response != null) ? response.toJson() : null; } catch (error) { print(error); return null; } } break; case "onCreateWindow": String url = call.arguments["url"]; bool androidIsDialog = call.arguments["androidIsDialog"]; bool androidIsUserGesture = call.arguments["androidIsUserGesture"]; int iosWKNavigationType = call.arguments["iosWKNavigationType"]; OnCreateWindowRequest onCreateWindowRequest = OnCreateWindowRequest( url: url, androidIsDialog: androidIsDialog, androidIsUserGesture: androidIsUserGesture, iosWKNavigationType: IOSWKNavigationType.fromValue(iosWKNavigationType)); if (_webview != null && _webview.onCreateWindow != null) _webview.onCreateWindow(this, onCreateWindowRequest); else if (_inAppBrowser != null) _inAppBrowser.onCreateWindow(onCreateWindowRequest); break; case "onGeolocationPermissionsShowPrompt": String origin = call.arguments["origin"]; if (_webview != null && _webview.androidOnGeolocationPermissionsShowPrompt != null) return (await _webview.androidOnGeolocationPermissionsShowPrompt( this, origin)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser .androidOnGeolocationPermissionsShowPrompt(origin)) ?.toMap(); break; case "onGeolocationPermissionsHidePrompt": if (_webview != null && _webview.androidOnGeolocationPermissionsHidePrompt != null) await _webview.androidOnGeolocationPermissionsHidePrompt(this); else if (_inAppBrowser != null) await _inAppBrowser.androidOnGeolocationPermissionsHidePrompt(); break; case "shouldInterceptRequest": String url = call.arguments["url"]; String method = call.arguments["method"]; Map headers = call.arguments["headers"]?.cast(); bool isForMainFrame = call.arguments["isForMainFrame"]; bool hasGesture = call.arguments["hasGesture"]; bool isRedirect = call.arguments["isRedirect"]; var request = new WebResourceRequest( url: url, method: method, headers: headers, isForMainFrame: isForMainFrame, hasGesture: hasGesture, isRedirect: isRedirect); if (_webview != null && _webview.androidShouldInterceptRequest != null) return (await _webview.androidShouldInterceptRequest(this, request)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.androidShouldInterceptRequest(request)) ?.toMap(); break; case "onRenderProcessUnresponsive": String url = call.arguments["url"]; if (_webview != null && _webview.androidOnRenderProcessUnresponsive != null) return (await _webview.androidOnRenderProcessUnresponsive(this, url)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.androidOnRenderProcessUnresponsive(url)) ?.toMap(); break; case "onRenderProcessResponsive": String url = call.arguments["url"]; if (_webview != null && _webview.androidOnRenderProcessResponsive != null) return (await _webview.androidOnRenderProcessResponsive(this, url)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.androidOnRenderProcessResponsive(url)) ?.toMap(); break; case "onRenderProcessGone": bool didCrash = call.arguments["didCrash"]; RendererPriority rendererPriorityAtExit = RendererPriority.fromValue( call.arguments["rendererPriorityAtExit"]); var detail = RenderProcessGoneDetail( didCrash: didCrash, rendererPriorityAtExit: rendererPriorityAtExit); if (_webview != null && _webview.androidOnRenderProcessGone != null) _webview.androidOnRenderProcessGone(this, detail); else if (_inAppBrowser != null) _inAppBrowser.androidOnRenderProcessGone(detail); break; case "onFormResubmission": String url = call.arguments["url"]; if (_webview != null && _webview.androidOnFormResubmission != null) return (await _webview.androidOnFormResubmission(this, url))?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.androidOnFormResubmission(url))?.toMap(); break; case "onScaleChanged": double oldScale = call.arguments["oldScale"]; double newScale = call.arguments["newScale"]; if (_webview != null && _webview.androidOnScaleChanged != null) _webview.androidOnScaleChanged(this, oldScale, newScale); else if (_inAppBrowser != null) _inAppBrowser.androidOnScaleChanged(oldScale, newScale); break; case "onJsAlert": String message = call.arguments["message"]; if (_webview != null && _webview.onJsAlert != null) return (await _webview.onJsAlert(this, message))?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.onJsAlert(message))?.toMap(); break; case "onJsConfirm": String message = call.arguments["message"]; if (_webview != null && _webview.onJsConfirm != null) return (await _webview.onJsConfirm(this, message))?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.onJsConfirm(message))?.toMap(); break; case "onJsPrompt": String message = call.arguments["message"]; String defaultValue = call.arguments["defaultValue"]; if (_webview != null && _webview.onJsPrompt != null) return (await _webview.onJsPrompt(this, message, defaultValue)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.onJsPrompt(message, defaultValue)) ?.toMap(); break; case "onSafeBrowsingHit": String url = call.arguments["url"]; SafeBrowsingThreat threatType = SafeBrowsingThreat.fromValue(call.arguments["threatType"]); if (_webview != null && _webview.androidOnSafeBrowsingHit != null) return (await _webview.androidOnSafeBrowsingHit( this, url, threatType)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.androidOnSafeBrowsingHit(url, threatType)) ?.toMap(); break; case "onReceivedHttpAuthRequest": String host = call.arguments["host"]; String protocol = call.arguments["protocol"]; String realm = call.arguments["realm"]; int port = call.arguments["port"]; int previousFailureCount = call.arguments["previousFailureCount"]; var protectionSpace = ProtectionSpace( host: host, protocol: protocol, realm: realm, port: port); var challenge = HttpAuthChallenge( previousFailureCount: previousFailureCount, protectionSpace: protectionSpace); if (_webview != null && _webview.onReceivedHttpAuthRequest != null) return (await _webview.onReceivedHttpAuthRequest(this, challenge)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.onReceivedHttpAuthRequest(challenge)) ?.toMap(); break; case "onReceivedServerTrustAuthRequest": String host = call.arguments["host"]; String protocol = call.arguments["protocol"]; String realm = call.arguments["realm"]; int port = call.arguments["port"]; int androidError = call.arguments["androidError"]; int iosError = call.arguments["iosError"]; String message = call.arguments["message"]; Uint8List serverCertificate = call.arguments["serverCertificate"]; AndroidSslError androidSslError = androidError != null ? AndroidSslError.fromValue(androidError) : null; IOSSslError iosSslError = iosError != null ? IOSSslError.fromValue(iosError) : null; var protectionSpace = ProtectionSpace( host: host, protocol: protocol, realm: realm, port: port); var challenge = ServerTrustChallenge( protectionSpace: protectionSpace, androidError: androidSslError, iosError: iosSslError, message: message, serverCertificate: serverCertificate); if (_webview != null && _webview.onReceivedServerTrustAuthRequest != null) return (await _webview.onReceivedServerTrustAuthRequest( this, challenge)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser .onReceivedServerTrustAuthRequest(challenge)) ?.toMap(); break; case "onReceivedClientCertRequest": String host = call.arguments["host"]; String protocol = call.arguments["protocol"]; String realm = call.arguments["realm"]; int port = call.arguments["port"]; var protectionSpace = ProtectionSpace( host: host, protocol: protocol, realm: realm, port: port); var challenge = ClientCertChallenge(protectionSpace: protectionSpace); if (_webview != null && _webview.onReceivedClientCertRequest != null) return (await _webview.onReceivedClientCertRequest(this, challenge)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.onReceivedClientCertRequest(challenge)) ?.toMap(); break; case "onFindResultReceived": int activeMatchOrdinal = call.arguments["activeMatchOrdinal"]; int numberOfMatches = call.arguments["numberOfMatches"]; bool isDoneCounting = call.arguments["isDoneCounting"]; if (_webview != null && _webview.onFindResultReceived != null) _webview.onFindResultReceived( this, activeMatchOrdinal, numberOfMatches, isDoneCounting); else if (_inAppBrowser != null) _inAppBrowser.onFindResultReceived( activeMatchOrdinal, numberOfMatches, isDoneCounting); break; case "onPermissionRequest": String origin = call.arguments["origin"]; List resources = call.arguments["resources"].cast(); if (_webview != null && _webview.androidOnPermissionRequest != null) return (await _webview.androidOnPermissionRequest( this, origin, resources)) ?.toMap(); else if (_inAppBrowser != null) return (await _inAppBrowser.androidOnPermissionRequest( origin, resources)) ?.toMap(); break; case "onUpdateVisitedHistory": String url = call.arguments["url"]; bool androidIsReload = call.arguments["androidIsReload"]; if (_webview != null && _webview.onUpdateVisitedHistory != null) _webview.onUpdateVisitedHistory(this, url, androidIsReload); else if (_inAppBrowser != null) _inAppBrowser.onUpdateVisitedHistory(url, androidIsReload); return null; case "onWebContentProcessDidTerminate": if (_webview != null && _webview.iosOnWebContentProcessDidTerminate != null) _webview.iosOnWebContentProcessDidTerminate(this); else if (_inAppBrowser != null) _inAppBrowser.iosOnWebContentProcessDidTerminate(); break; case "onPageCommitVisible": String url = call.arguments["url"]; if (_webview != null && _webview.onPageCommitVisible != null) _webview.onPageCommitVisible(this, url); else if (_inAppBrowser != null) _inAppBrowser.onPageCommitVisible(url); break; case "onDidReceiveServerRedirectForProvisionalNavigation": if (_webview != null && _webview.iosOnDidReceiveServerRedirectForProvisionalNavigation != null) _webview.iosOnDidReceiveServerRedirectForProvisionalNavigation(this); else if (_inAppBrowser != null) _inAppBrowser.iosOnDidReceiveServerRedirectForProvisionalNavigation(); break; case "onLongPressHitTestResult": Map hitTestResultMap = call.arguments["hitTestResult"]; InAppWebViewHitTestResultType type = InAppWebViewHitTestResultType.fromValue( hitTestResultMap["type"].toInt()); String extra = hitTestResultMap["extra"]; InAppWebViewHitTestResult hitTestResult = InAppWebViewHitTestResult(type: type, extra: extra); if (_webview != null && _webview.onLongPressHitTestResult != null) _webview.onLongPressHitTestResult(this, hitTestResult); else if (_inAppBrowser != null) _inAppBrowser.onLongPressHitTestResult(hitTestResult); break; case "onCreateContextMenu": ContextMenu contextMenu; if (_webview != null && _webview.contextMenu != null) { contextMenu = _webview.contextMenu; } else if (_inAppBrowser != null && _inAppBrowser.contextMenu != null) { contextMenu = _inAppBrowser.contextMenu; } if (contextMenu != null && contextMenu.onCreateContextMenu != null) { Map hitTestResultMap = call.arguments["hitTestResult"]; InAppWebViewHitTestResultType type = InAppWebViewHitTestResultType.fromValue( hitTestResultMap["type"].toInt()); String extra = hitTestResultMap["extra"]; InAppWebViewHitTestResult hitTestResult = InAppWebViewHitTestResult(type: type, extra: extra); contextMenu.onCreateContextMenu(hitTestResult); } break; case "onHideContextMenu": ContextMenu contextMenu; if (_webview != null && _webview.contextMenu != null) { contextMenu = _webview.contextMenu; } else if (_inAppBrowser != null && _inAppBrowser.contextMenu != null) { contextMenu = _inAppBrowser.contextMenu; } if (contextMenu != null && contextMenu.onHideContextMenu != null) { contextMenu.onHideContextMenu(); } break; case "onContextMenuActionItemClicked": ContextMenu contextMenu; if (_webview != null && _webview.contextMenu != null) { contextMenu = _webview.contextMenu; } else if (_inAppBrowser != null && _inAppBrowser.contextMenu != null) { contextMenu = _inAppBrowser.contextMenu; } if (contextMenu != null) { int androidId = call.arguments["androidId"]; String iosId = call.arguments["iosId"]; String title = call.arguments["title"]; ContextMenuItem menuItemClicked = ContextMenuItem( androidId: androidId, iosId: iosId, title: title, action: null); for (var menuItem in contextMenu.menuItems) { if ((Platform.isAndroid && menuItem.androidId == androidId) || (Platform.isIOS && menuItem.iosId == iosId)) { menuItemClicked = menuItem; menuItem?.action(); break; } } if (contextMenu.onContextMenuActionItemClicked != null) { contextMenu.onContextMenuActionItemClicked(menuItemClicked); } } break; case "onEnterFullscreen": if (_webview != null && _webview.onEnterFullscreen != null) _webview.onEnterFullscreen(this); else if (_inAppBrowser != null) _inAppBrowser.onEnterFullscreen(); break; case "onExitFullscreen": if (_webview != null && _webview.onExitFullscreen != null) _webview.onExitFullscreen(this); else if (_inAppBrowser != null) _inAppBrowser.onExitFullscreen(); break; case "onCallJsHandler": String handlerName = call.arguments["handlerName"]; // decode args to json List args = jsonDecode(call.arguments["args"]); switch (handlerName) { case "androidKeyboardWorkaroundFocusoutEvent": // android Workaround to hide the Keyboard when the user click outside // on something not focusable such as input or a textarea. SystemChannels.textInput.invokeMethod("TextInput.hide"); break; case "onLoadResource": Map argMap = args[0]; String initiatorType = argMap["initiatorType"]; String url = argMap["name"]; double startTime = argMap["startTime"] is int ? argMap["startTime"].toDouble() : argMap["startTime"]; double duration = argMap["duration"] is int ? argMap["duration"].toDouble() : argMap["duration"]; var response = new LoadedResource( initiatorType: initiatorType, url: url, startTime: startTime, duration: duration); if (_webview != null && _webview.onLoadResource != null) _webview.onLoadResource(this, response); else if (_inAppBrowser != null) _inAppBrowser.onLoadResource(response); return null; case "shouldInterceptAjaxRequest": Map argMap = args[0]; dynamic data = argMap["data"]; String method = argMap["method"]; String url = argMap["url"]; bool isAsync = argMap["isAsync"]; String user = argMap["user"]; String password = argMap["password"]; bool withCredentials = argMap["withCredentials"]; AjaxRequestHeaders headers = AjaxRequestHeaders(argMap["headers"]); String responseType = argMap["responseType"]; var request = new AjaxRequest( data: data, method: method, url: url, isAsync: isAsync, user: user, password: password, withCredentials: withCredentials, headers: headers, responseType: responseType); if (_webview != null && _webview.shouldInterceptAjaxRequest != null) return jsonEncode( await _webview.shouldInterceptAjaxRequest(this, request)); else if (_inAppBrowser != null) return jsonEncode( await _inAppBrowser.shouldInterceptAjaxRequest(request)); return null; case "onAjaxReadyStateChange": Map argMap = args[0]; dynamic data = argMap["data"]; String method = argMap["method"]; String url = argMap["url"]; bool isAsync = argMap["isAsync"]; String user = argMap["user"]; String password = argMap["password"]; bool withCredentials = argMap["withCredentials"]; AjaxRequestHeaders headers = AjaxRequestHeaders(argMap["headers"]); int readyState = argMap["readyState"]; int status = argMap["status"]; String responseURL = argMap["responseURL"]; String responseType = argMap["responseType"]; dynamic response = argMap["response"]; String responseText = argMap["responseText"]; String responseXML = argMap["responseXML"]; String statusText = argMap["statusText"]; Map responseHeaders = argMap["responseHeaders"]; var request = new AjaxRequest( data: data, method: method, url: url, isAsync: isAsync, user: user, password: password, withCredentials: withCredentials, headers: headers, readyState: AjaxRequestReadyState.fromValue(readyState), status: status, responseURL: responseURL, responseType: responseType, response: response, responseText: responseText, responseXML: responseXML, statusText: statusText, responseHeaders: responseHeaders); if (_webview != null && _webview.onAjaxReadyStateChange != null) return jsonEncode( await _webview.onAjaxReadyStateChange(this, request)); else if (_inAppBrowser != null) return jsonEncode( await _inAppBrowser.onAjaxReadyStateChange(request)); return null; case "onAjaxProgress": Map argMap = args[0]; dynamic data = argMap["data"]; String method = argMap["method"]; String url = argMap["url"]; bool isAsync = argMap["isAsync"]; String user = argMap["user"]; String password = argMap["password"]; bool withCredentials = argMap["withCredentials"]; AjaxRequestHeaders headers = AjaxRequestHeaders(argMap["headers"]); int readyState = argMap["readyState"]; int status = argMap["status"]; String responseURL = argMap["responseURL"]; String responseType = argMap["responseType"]; dynamic response = argMap["response"]; String responseText = argMap["responseText"]; String responseXML = argMap["responseXML"]; String statusText = argMap["statusText"]; Map responseHeaders = argMap["responseHeaders"]; Map eventMap = argMap["event"]; AjaxRequestEvent event = AjaxRequestEvent( lengthComputable: eventMap["lengthComputable"], loaded: eventMap["loaded"], total: eventMap["total"], type: AjaxRequestEventType.fromValue(eventMap["type"])); var request = new AjaxRequest( data: data, method: method, url: url, isAsync: isAsync, user: user, password: password, withCredentials: withCredentials, headers: headers, readyState: AjaxRequestReadyState.fromValue(readyState), status: status, responseURL: responseURL, responseType: responseType, response: response, responseText: responseText, responseXML: responseXML, statusText: statusText, responseHeaders: responseHeaders, event: event); if (_webview != null && _webview.onAjaxProgress != null) return jsonEncode(await _webview.onAjaxProgress(this, request)); else if (_inAppBrowser != null) return jsonEncode(await _inAppBrowser.onAjaxProgress(request)); return null; case "shouldInterceptFetchRequest": Map argMap = args[0]; String url = argMap["url"]; String method = argMap["method"]; Map headers = argMap["headers"]; Uint8List body = Uint8List.fromList(argMap["body"].cast()); String mode = argMap["mode"]; FetchRequestCredential credentials = FetchRequest.fromMap(argMap["credentials"]); String cache = argMap["cache"]; String redirect = argMap["redirect"]; String referrer = argMap["referrer"]; String referrerPolicy = argMap["referrerPolicy"]; String integrity = argMap["integrity"]; bool keepalive = argMap["keepalive"]; var request = new FetchRequest( url: url, method: method, headers: headers, body: body, mode: mode, credentials: credentials, cache: cache, redirect: redirect, referrer: referrer, referrerPolicy: referrerPolicy, integrity: integrity, keepalive: keepalive); if (_webview != null && _webview.shouldInterceptFetchRequest != null) return jsonEncode( await _webview.shouldInterceptFetchRequest(this, request)); else if (_inAppBrowser != null) return jsonEncode( await _inAppBrowser.shouldInterceptFetchRequest(request)); return null; case "onPrint": String url = args[0]; if (_webview != null && _webview.onPrint != null) _webview.onPrint(this, url); else if (_inAppBrowser != null) _inAppBrowser.onPrint(url); return null; } if (javaScriptHandlersMap.containsKey(handlerName)) { // convert result to json try { return jsonEncode(await javaScriptHandlersMap[handlerName](args)); } catch (error) { print(error); return null; } } break; default: throw UnimplementedError("Unimplemented ${call.method} method"); } } ///Gets the URL for the current page. ///This is not always the same as the URL passed to [WebView.onLoadStart] because although the load for that URL has begun, the current page may not have changed. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#getUrl() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1415005-url Future getUrl() async { Map args = {}; return await _channel.invokeMethod('getUrl', args); } ///Gets the title for the current page. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#getTitle() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1415015-title Future getTitle() async { Map args = {}; return await _channel.invokeMethod('getTitle', args); } ///Gets the progress for the current page. The progress value is between 0 and 100. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#getProgress() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1415007-estimatedprogress Future getProgress() async { Map args = {}; return await _channel.invokeMethod('getProgress', args); } ///Gets the content html of the page. It first tries to get the content through javascript. ///If this doesn't work, it tries to get the content reading the file: ///- checking if it is an asset (`file:///`) or ///- downloading it using an `HttpClient` through the WebView's current url. /// ///Returns `null` if it was unable to get it. Future getHtml() async { String html; InAppWebViewGroupOptions options = await getOptions(); if (options != null && options.crossPlatform.javaScriptEnabled == true) { html = await evaluateJavascript( source: "window.document.getElementsByTagName('html')[0].outerHTML;"); if (html != null && html.isNotEmpty) return html; } var webviewUrl = await getUrl(); if (webviewUrl.startsWith("file:///")) { var assetPathSplitted = webviewUrl.split("/flutter_assets/"); var assetPath = assetPathSplitted[assetPathSplitted.length - 1]; try { var bytes = await rootBundle.load(assetPath); html = utf8.decode(bytes.buffer.asUint8List()); } catch (e) {} } else { HttpClient client = new HttpClient(); var url = Uri.parse(webviewUrl); try { var htmlRequest = await client.getUrl(url); html = await (await htmlRequest.close()).transform(Utf8Decoder()).join(); } catch (e) { print(e); } } return html; } ///Gets the list of all favicons for the current page. Future> getFavicons() async { List favicons = []; HttpClient client = new HttpClient(); var webviewUrl = await getUrl(); var url = (webviewUrl.startsWith("file:///")) ? Uri.file(webviewUrl) : Uri.parse(webviewUrl); String manifestUrl; var html = await getHtml(); if (html == null || (html != null && html.isEmpty)) { return favicons; } var assetPathBase; if (webviewUrl.startsWith("file:///")) { var assetPathSplitted = webviewUrl.split("/flutter_assets/"); assetPathBase = assetPathSplitted[0] + "/flutter_assets/"; } // get all link html elements var document = parse(html); var links = document.getElementsByTagName('link'); for (var link in links) { var attributes = link.attributes; if (attributes["rel"] == "manifest") { manifestUrl = attributes["href"]; if (!_isUrlAbsolute(manifestUrl)) { if (manifestUrl.startsWith("/")) { manifestUrl = manifestUrl.substring(1); } manifestUrl = ((assetPathBase == null) ? url.scheme + "://" + url.host + "/" : assetPathBase) + manifestUrl; } continue; } if (!attributes["rel"].contains("icon")) { continue; } favicons.addAll(_createFavicons(url, assetPathBase, attributes["href"], attributes["rel"], attributes["sizes"], false)); } // try to get /favicon.ico try { var faviconUrl = url.scheme + "://" + url.host + "/favicon.ico"; await client.headUrl(Uri.parse(faviconUrl)); favicons.add(Favicon(url: faviconUrl, rel: "shortcut icon")); } catch (e, stacktrace) { print("/favicon.ico file not found: " + e.toString()); print(stacktrace); } // try to get the manifest file HttpClientRequest manifestRequest; HttpClientResponse manifestResponse; bool manifestFound = false; if (manifestUrl == null) { manifestUrl = url.scheme + "://" + url.host + "/manifest.json"; } try { manifestRequest = await client.getUrl(Uri.parse(manifestUrl)); manifestResponse = await manifestRequest.close(); manifestFound = manifestResponse.statusCode == 200 && manifestResponse.headers.contentType?.mimeType == "application/json"; } catch (e, stacktrace) { print("Manifest file not found: " + e.toString()); print(stacktrace); } if (manifestFound) { Map manifest = json.decode(await manifestResponse.transform(Utf8Decoder()).join()); if (manifest.containsKey("icons")) { for (Map icon in manifest["icons"]) { favicons.addAll(_createFavicons(url, assetPathBase, icon["src"], icon["rel"], icon["sizes"], true)); } } } return favicons; } bool _isUrlAbsolute(String url) { return url.startsWith("http://") || url.startsWith("https://"); } List _createFavicons(Uri url, String assetPathBase, String urlIcon, String rel, String sizes, bool isManifest) { List favicons = []; List urlSplitted = urlIcon.split("/"); if (!_isUrlAbsolute(urlIcon)) { if (urlIcon.startsWith("/")) { urlIcon = urlIcon.substring(1); } urlIcon = ((assetPathBase == null) ? url.scheme + "://" + url.host + "/" : assetPathBase) + urlIcon; } if (isManifest) { rel = (sizes != null) ? urlSplitted[urlSplitted.length - 1] .replaceFirst("-" + sizes, "") .split(" ")[0] .split(".")[0] : null; } if (sizes != null && sizes.isNotEmpty && sizes != "any") { List sizesSplitted = sizes.split(" "); for (String size in sizesSplitted) { int width = int.parse(size.split("x")[0]); int height = int.parse(size.split("x")[1]); favicons .add(Favicon(url: urlIcon, rel: rel, width: width, height: height)); } } else { favicons.add(Favicon(url: urlIcon, rel: rel, width: null, height: null)); } return favicons; } ///Loads the given [url] with optional [headers] specified as a map from name to value. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#loadUrl(java.lang.String) ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414954-load Future loadUrl( {@required String url, Map headers = const {}}) async { assert(url != null && url.isNotEmpty); Map args = {}; args.putIfAbsent('url', () => url); args.putIfAbsent('headers', () => headers); await _channel.invokeMethod('loadUrl', args); } ///Loads the given [url] with [postData] using `POST` method into this WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#postUrl(java.lang.String,%20byte[]) Future postUrl( {@required String url, @required Uint8List postData}) async { assert(url != null && url.isNotEmpty); assert(postData != null); Map args = {}; args.putIfAbsent('url', () => url); args.putIfAbsent('postData', () => postData); await _channel.invokeMethod('postUrl', args); } ///Loads the given [data] into this WebView, using [baseUrl] as the base URL for the content. /// ///The [mimeType] parameter specifies the format of the data. The default value is `"text/html"`. /// ///The [encoding] parameter specifies the encoding of the data. The default value is `"utf8"`. /// ///The [androidHistoryUrl] parameter is the URL to use as the history entry. The default value is `about:blank`. If non-null, this must be a valid URL. This parameter is used only on Android. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#loadDataWithBaseURL(java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String) ///**Official iOS API**: ///- https://developer.apple.com/documentation/webkit/wkwebview/1415004-loadhtmlstring ///- https://developer.apple.com/documentation/webkit/wkwebview/1415011-load Future loadData( {@required String data, String mimeType = "text/html", String encoding = "utf8", String baseUrl = "about:blank", String androidHistoryUrl = "about:blank"}) async { assert(data != null); Map args = {}; args.putIfAbsent('data', () => data); args.putIfAbsent('mimeType', () => mimeType); args.putIfAbsent('encoding', () => encoding); args.putIfAbsent('baseUrl', () => baseUrl); args.putIfAbsent('historyUrl', () => androidHistoryUrl); await _channel.invokeMethod('loadData', args); } ///Loads the given [assetFilePath] with optional [headers] specified as a map from name to value. /// ///To be able to load your local files (assets, js, css, etc.), you need to add them in the `assets` section of the `pubspec.yaml` file, otherwise they cannot be found! /// ///Example of a `pubspec.yaml` file: ///```yaml ///... /// ///# The following section is specific to Flutter. ///flutter: /// /// # The following line ensures that the Material Icons font is /// # included with your application, so that you can use the icons in /// # the material Icons class. /// uses-material-design: true /// /// assets: /// - assets/index.html /// - assets/css/ /// - assets/images/ /// ///... ///``` ///Example of a `main.dart` file: ///```dart ///... ///inAppBrowser.loadFile("assets/index.html"); ///... ///``` Future loadFile( {@required String assetFilePath, Map headers = const {}}) async { assert(assetFilePath != null && assetFilePath.isNotEmpty); Map args = {}; args.putIfAbsent('url', () => assetFilePath); args.putIfAbsent('headers', () => headers); await _channel.invokeMethod('loadFile', args); } ///Reloads the WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#reload() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414969-reload Future reload() async { Map args = {}; await _channel.invokeMethod('reload', args); } ///Goes back in the history of the WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#goBack() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414952-goback Future goBack() async { Map args = {}; await _channel.invokeMethod('goBack', args); } ///Returns a boolean value indicating whether the WebView can move backward. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#canGoBack() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414966-cangoback Future canGoBack() async { Map args = {}; return await _channel.invokeMethod('canGoBack', args); } ///Goes forward in the history of the WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#goForward() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414993-goforward Future goForward() async { Map args = {}; await _channel.invokeMethod('goForward', args); } ///Returns a boolean value indicating whether the WebView can move forward. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#canGoForward() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414962-cangoforward Future canGoForward() async { Map args = {}; return await _channel.invokeMethod('canGoForward', args); } ///Goes to the history item that is the number of steps away from the current item. Steps is negative if backward and positive if forward. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#goBackOrForward(int) ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414991-go Future goBackOrForward({@required int steps}) async { assert(steps != null); Map args = {}; args.putIfAbsent('steps', () => steps); await _channel.invokeMethod('goBackOrForward', args); } ///Returns a boolean value indicating whether the WebView can go back or forward the given number of steps. Steps is negative if backward and positive if forward. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#canGoBackOrForward(int) Future canGoBackOrForward({@required int steps}) async { assert(steps != null); Map args = {}; args.putIfAbsent('steps', () => steps); return await _channel.invokeMethod('canGoBackOrForward', args); } ///Navigates to a [WebHistoryItem] from the back-forward [WebHistory.list] and sets it as the current item. Future goTo({@required WebHistoryItem historyItem}) async { await goBackOrForward(steps: historyItem.offset); } ///Check if the WebView instance is in a loading state. Future isLoading() async { Map args = {}; return await _channel.invokeMethod('isLoading', args); } ///Stops the WebView from loading. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#stopLoading() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414981-stoploading Future stopLoading() async { Map args = {}; await _channel.invokeMethod('stopLoading', args); } ///Evaluates JavaScript code into the WebView and returns the result of the evaluation. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#evaluateJavascript(java.lang.String,%20android.webkit.ValueCallback%3Cjava.lang.String%3E) ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1415017-evaluatejavascript Future evaluateJavascript({@required String source}) async { Map args = {}; args.putIfAbsent('source', () => source); var data = await _channel.invokeMethod('evaluateJavascript', args); if (data != null && Platform.isAndroid) data = json.decode(data); return data; } ///Injects an external JavaScript file into the WebView from a defined url. Future injectJavascriptFileFromUrl({@required String urlFile}) async { Map args = {}; args.putIfAbsent('urlFile', () => urlFile); await _channel.invokeMethod('injectJavascriptFileFromUrl', args); } ///Injects a JavaScript file into the WebView from the flutter assets directory. Future injectJavascriptFileFromAsset( {@required String assetFilePath}) async { String source = await rootBundle.loadString(assetFilePath); await evaluateJavascript(source: source); } ///Injects CSS into the WebView. Future injectCSSCode({@required String source}) async { Map args = {}; args.putIfAbsent('source', () => source); await _channel.invokeMethod('injectCSSCode', args); } ///Injects an external CSS file into the WebView from a defined url. Future injectCSSFileFromUrl({@required String urlFile}) async { Map args = {}; args.putIfAbsent('urlFile', () => urlFile); await _channel.invokeMethod('injectStyleFile', args); } ///Injects a CSS file into the WebView from the flutter assets directory. Future injectCSSFileFromAsset({@required String assetFilePath}) async { String source = await rootBundle.loadString(assetFilePath); await injectCSSCode(source: source); } ///Adds a JavaScript message handler [callback] ([JavaScriptHandlerCallback]) that listen to post messages sent from JavaScript by the handler with name [handlerName]. /// ///The Android implementation uses [addJavascriptInterface](https://developer.android.com/reference/android/webkit/WebView#addJavascriptInterface(java.lang.Object,%20java.lang.String)). ///The iOS implementation uses [addScriptMessageHandler](https://developer.apple.com/documentation/webkit/wkusercontentcontroller/1537172-addscriptmessagehandler?language=objc) /// ///The JavaScript function that can be used to call the handler is `window.flutter_inappwebview.callHandler(handlerName , ...args)`, where `args` are [rest parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters). ///The `args` will be stringified automatically using `JSON.stringify(args)` method and then they will be decoded on the Dart side. /// ///In order to call `window.flutter_inappwebview.callHandler(handlerName , ...args)` properly, you need to wait and listen the JavaScript event `flutterInAppWebViewPlatformReady`. ///This event will be dispatched as soon as the platform (Android or iOS) is ready to handle the `callHandler` method. ///```javascript /// window.addEventListener("flutterInAppWebViewPlatformReady", function(event) { /// console.log("ready"); /// }); ///``` /// ///`window.flutter_inappwebview.callHandler` returns a JavaScript [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) ///that can be used to get the json result returned by [JavaScriptHandlerCallback]. ///In this case, simply return data that you want to send and it will be automatically json encoded using [jsonEncode] from the `dart:convert` library. /// ///So, on the JavaScript side, to get data coming from the Dart side, you will use: ///```html /// ///``` /// ///Instead, on the `onLoadStop` WebView event, you can use `callHandler` directly: ///```dart /// // Inject JavaScript that will receive data back from Flutter /// inAppWebViewController.evaluateJavascript(source: """ /// window.flutter_inappwebview.callHandler('test', 'Text from Javascript').then(function(result) { /// console.log(result); /// }); /// """); ///``` /// ///Forbidden names for JavaScript handlers are defined in [javaScriptHandlerForbiddenNames]. void addJavaScriptHandler( {@required String handlerName, @required JavaScriptHandlerCallback callback}) { assert(!javaScriptHandlerForbiddenNames.contains(handlerName)); this.javaScriptHandlersMap[handlerName] = (callback); } ///Removes a JavaScript message handler previously added with the [addJavaScriptHandler()] associated to [handlerName] key. ///Returns the value associated with [handlerName] before it was removed. ///Returns `null` if [handlerName] was not found. JavaScriptHandlerCallback removeJavaScriptHandler( {@required String handlerName}) { return this.javaScriptHandlersMap.remove(handlerName); } ///Takes a screenshot (in PNG format) of the WebView's visible viewport and returns a `Uint8List`. Returns `null` if it wasn't be able to take it. /// ///**NOTE for iOS**: available from iOS 11.0+. /// ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/2873260-takesnapshot Future takeScreenshot() async { Map args = {}; return await _channel.invokeMethod('takeScreenshot', args); } ///Sets the WebView options with the new [options] and evaluates them. Future setOptions({@required InAppWebViewGroupOptions options}) async { Map args = {}; args.putIfAbsent('options', () => options?.toMap()); await _channel.invokeMethod('setOptions', args); } ///Gets the current WebView options. Returns `null` if it wasn't able to get them. Future getOptions() async { Map args = {}; Map options = await _channel.invokeMethod('getOptions', args); if (options != null) { options = options.cast(); return InAppWebViewGroupOptions.fromMap(options); } return null; } ///Gets the WebHistory for this WebView. This contains the back/forward list for use in querying each item in the history stack. ///This contains only a snapshot of the current state. ///Multiple calls to this method may return different objects. ///The object returned from this method will not be updated to reflect any new state. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#copyBackForwardList() ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414977-backforwardlist Future getCopyBackForwardList() async { Map args = {}; Map result = await _channel.invokeMethod('getCopyBackForwardList', args); result = result.cast(); List historyListMap = result["history"]; historyListMap = historyListMap.cast>(); int currentIndex = result["currentIndex"]; List historyList = List(); for (var i = 0; i < historyListMap.length; i++) { LinkedHashMap historyItem = historyListMap[i]; historyList.add(WebHistoryItem( originalUrl: historyItem["originalUrl"], title: historyItem["title"], url: historyItem["url"], index: i, offset: i - currentIndex)); } return WebHistory(list: historyList, currentIndex: currentIndex); } ///Clears all the webview's cache. Future clearCache() async { Map args = {}; await _channel.invokeMethod('clearCache', args); } ///Finds all instances of find on the page and highlights them. Notifies [onFindResultReceived] listener. /// ///[find] represents the string to find. /// ///**NOTE**: on Android, it finds all instances asynchronously. Successive calls to this will cancel any pending searches. /// ///**NOTE**: on iOS, this is implemented using CSS and Javascript. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#findAllAsync(java.lang.String) Future findAllAsync({@required String find}) async { assert(find != null); Map args = {}; args.putIfAbsent('find', () => find); await _channel.invokeMethod('findAllAsync', args); } ///Highlights and scrolls to the next match found by [findAllAsync()]. Notifies [onFindResultReceived] listener. /// ///[forward] represents the direction to search. /// ///**NOTE**: on iOS, this is implemented using CSS and Javascript. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#findNext(boolean) Future findNext({@required bool forward}) async { assert(forward != null); Map args = {}; args.putIfAbsent('forward', () => forward); await _channel.invokeMethod('findNext', args); } ///Clears the highlighting surrounding text matches created by [findAllAsync()]. /// ///**NOTE**: on iOS, this is implemented using CSS and Javascript. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#clearMatches() Future clearMatches() async { Map args = {}; await _channel.invokeMethod('clearMatches', args); } ///Gets the html (with javascript) of the Chromium's t-rex runner game. Used in combination with [getTRexRunnerCss()]. Future getTRexRunnerHtml() async { return await rootBundle .loadString("packages/flutter_inappwebview/t_rex_runner/t-rex.html"); } ///Gets the css of the Chromium's t-rex runner game. Used in combination with [getTRexRunnerHtml()]. Future getTRexRunnerCss() async { return await rootBundle .loadString("packages/flutter_inappwebview/t_rex_runner/t-rex.css"); } ///Scrolls the WebView to the position. /// ///[x] represents the x position to scroll to. /// ///[y] represents the y position to scroll to. /// ///[animated] `true` to animate the scroll transition, `false` to make the scoll transition immediate. /// ///**Official Android API**: https://developer.android.com/reference/android/view/View#scrollTo(int,%20int) ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiscrollview/1619400-setcontentoffset Future scrollTo({@required int x, @required int y, bool animated = false}) async { assert(x != null && y != null); Map args = {}; args.putIfAbsent('x', () => x); args.putIfAbsent('y', () => y); args.putIfAbsent('animated', () => animated ?? false); await _channel.invokeMethod('scrollTo', args); } ///Moves the scrolled position of the WebView. /// ///[x] represents the amount of pixels to scroll by horizontally. /// ///[y] represents the amount of pixels to scroll by vertically. /// ///[animated] `true` to animate the scroll transition, `false` to make the scoll transition immediate. /// ///**Official Android API**: https://developer.android.com/reference/android/view/View#scrollBy(int,%20int) ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiscrollview/1619400-setcontentoffset Future scrollBy({@required int x, @required int y, bool animated = false}) async { assert(x != null && y != null); Map args = {}; args.putIfAbsent('x', () => x); args.putIfAbsent('y', () => y); args.putIfAbsent('animated', () => animated ?? false); await _channel.invokeMethod('scrollBy', args); } ///On Android, it pauses all layout, parsing, and JavaScript timers for all WebViews. ///This is a global requests, not restricted to just this WebView. This can be useful if the application has been paused. /// ///On iOS, it is restricted to just this WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#pauseTimers() Future pauseTimers() async { Map args = {}; await _channel.invokeMethod('pauseTimers', args); } ///On Android, it resumes all layout, parsing, and JavaScript timers for all WebViews. This will resume dispatching all timers. /// ///On iOS, it resumes all layout, parsing, and JavaScript timers to just this WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#resumeTimers() Future resumeTimers() async { Map args = {}; await _channel.invokeMethod('resumeTimers', args); } ///Prints the current page. /// ///**NOTE**: available on Android 21+. /// ///**Official Android API**: https://developer.android.com/reference/android/print/PrintManager ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiprintinteractioncontroller Future printCurrentPage() async { Map args = {}; await _channel.invokeMethod('printCurrentPage', args); } ///Gets the height of the HTML content. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#getContentHeight() ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiscrollview/1619399-contentsize Future getContentHeight() async { Map args = {}; return await _channel.invokeMethod('getContentHeight', args); } ///Performs a zoom operation in this WebView. /// ///[zoomFactor] represents the zoom factor to apply. On Android, the zoom factor will be clamped to the Webview's zoom limits and, also, this value must be in the range 0.01 (excluded) to 100.0 (included). /// ///**NOTE**: available on Android 21+. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#zoomBy(float) ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiscrollview/1619412-setzoomscale Future zoomBy(double zoomFactor) async { assert(!Platform.isAndroid || (Platform.isAndroid && zoomFactor > 0.01 && zoomFactor <= 100.0)); Map args = {}; args.putIfAbsent('zoomFactor', () => zoomFactor); return await _channel.invokeMethod('zoomBy', args); } ///Gets the current scale of this WebView. /// ///**Official Android API**: ///- https://developer.android.com/reference/android/util/DisplayMetrics#density ///- https://developer.android.com/reference/android/webkit/WebViewClient#onScaleChanged(android.webkit.WebView,%20float,%20float) ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiscrollview/1619419-zoomscale Future getScale() async { Map args = {}; return await _channel.invokeMethod('getScale', args); } ///Gets the selected text. /// ///**NOTE**: This method is implemented with using JavaScript. ///Available only on Android 19+. Future getSelectedText() async { Map args = {}; return await _channel.invokeMethod('getSelectedText', args); } ///Gets the hit result for hitting an HTML elements. /// ///**NOTE**: On iOS it is implemented using JavaScript. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#getHitTestResult() Future getHitTestResult() async { Map args = {}; var hitTestResultMap = await _channel.invokeMethod('getHitTestResult', args); InAppWebViewHitTestResultType type = InAppWebViewHitTestResultType.fromValue( hitTestResultMap["type"].toInt()); String extra = hitTestResultMap["extra"]; return InAppWebViewHitTestResult(type: type, extra: extra); } ///Clears the current focus. It will clear also, for example, the current text selection. /// ///**Official Android API**: https://developer.android.com/reference/android/view/ViewGroup#clearFocus() ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiresponder/1621097-resignfirstresponder Future clearFocus() async { Map args = {}; return await _channel.invokeMethod('clearFocus', args); } ///Sets or updates the WebView context menu to be used next time it will appear. Future setContextMenu(ContextMenu contextMenu) async { Map args = {}; args.putIfAbsent("contextMenu", () => contextMenu?.toMap()); await _channel.invokeMethod('setContextMenu', args); _inAppBrowser?.contextMenu = contextMenu; } ///Requests the anchor or image element URL at the last tapped point. /// ///**NOTE**: On iOS it is implemented using JavaScript. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#requestFocusNodeHref(android.os.Message) Future requestFocusNodeHref() async { Map args = {}; Map result = await _channel.invokeMethod('requestFocusNodeHref', args); return result != null ? RequestFocusNodeHrefResult( url: result['url'], title: result['title'], src: result['src'], ) : null; } ///Requests the URL of the image last touched by the user. /// ///**NOTE**: On iOS it is implemented using JavaScript. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#requestImageRef(android.os.Message) Future requestImageRef() async { Map args = {}; Map result = await _channel.invokeMethod('requestImageRef', args); return result != null ? RequestImageRefResult( url: result['url'], ) : null; } ///Returns the list of `` tags of the current WebView. /// ///**NOTE**: It is implemented using JavaScript. Future> getMetaTags() async { List metaTags = []; List> metaTagList = (await evaluateJavascript(source: """ (function() { var metaTags = []; var metaTagNodes = document.head.getElementsByTagName('meta'); for (var i = 0; i < metaTagNodes.length; i++) { var metaTagNode = metaTagNodes[i]; var otherAttributes = metaTagNode.getAttributeNames(); var nameIndex = otherAttributes.indexOf("name"); if (nameIndex !== -1) otherAttributes.splice(nameIndex, 1); var contentIndex = otherAttributes.indexOf("content"); if (contentIndex !== -1) otherAttributes.splice(contentIndex, 1); var attrs = []; for (var j = 0; j < otherAttributes.length; j++) { var otherAttribute = otherAttributes[j]; attrs.push( { name: otherAttribute, value: metaTagNode.getAttribute(otherAttribute) } ); } metaTags.push( { name: metaTagNode.name, content: metaTagNode.content, attrs: attrs } ); } return metaTags; })(); """))?.cast>(); if (metaTagList == null) { return metaTags; } for (var metaTag in metaTagList) { var attrs = []; for (var metaTagAttr in metaTag["attrs"]) { attrs.add( MetaTagAttribute(name: metaTagAttr["name"], value: metaTagAttr["value"]) ); } metaTags.add( MetaTag(name: metaTag["name"], content: metaTag["content"], attrs: attrs) ); } return metaTags; } ///Returns an instance of [Color] representing the `content` value of the ///`` tag of the current WebView, if available, otherwise `null`. /// ///**NOTE**: It is implemented using JavaScript. Future getMetaThemeColor() async { var metaTags = await getMetaTags(); MetaTag metaTagThemeColor; for (var metaTag in metaTags) { if (metaTag.name == "theme-color") { metaTagThemeColor = metaTag; break; } } if (metaTagThemeColor == null) { return null; } var colorValue = metaTagThemeColor.content; return Util.convertColorFromStringRepresentation(colorValue); } ///Returns the scrolled left position of the current WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/view/View#getScrollX() ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiscrollview/1619404-contentoffset Future getScrollX() async { Map args = {}; return await _channel.invokeMethod('getScrollX', args); } ///Returns the scrolled top position of the current WebView. /// ///**Official Android API**: https://developer.android.com/reference/android/view/View#getScrollY() ///**Official iOS API**: https://developer.apple.com/documentation/uikit/uiscrollview/1619404-contentoffset Future getScrollY() async { Map args = {}; return await _channel.invokeMethod('getScrollY', args); } ///Gets the default user agent. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebSettings#getDefaultUserAgent(android.content.Context) static Future getDefaultUserAgent() async { Map args = {}; return await _staticChannel.invokeMethod('getDefaultUserAgent', args); } } ///InAppWebViewControllerAndroid class represents the Android controller that contains only android-specific methods for the WebView. class AndroidInAppWebViewController { InAppWebViewController _controller; AndroidInAppWebViewController(InAppWebViewController controller) { assert(controller != null); this._controller = controller; } ///Starts Safe Browsing initialization. /// ///URL loads are not guaranteed to be protected by Safe Browsing until after the this method returns true. ///Safe Browsing is not fully supported on all devices. For those devices this method will returns false. /// ///This should not be called if Safe Browsing has been disabled by manifest tag ///or [AndroidInAppWebViewOptions.safeBrowsingEnabled]. This prepares resources used for Safe Browsing. /// ///**NOTE**: available only on Android 27+. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#startSafeBrowsing(android.content.Context,%20android.webkit.ValueCallback%3Cjava.lang.Boolean%3E) Future startSafeBrowsing() async { Map args = {}; return await _controller._channel.invokeMethod('startSafeBrowsing', args); } ///Clears the SSL preferences table stored in response to proceeding with SSL certificate errors. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#clearSslPreferences() Future clearSslPreferences() async { Map args = {}; await _controller._channel.invokeMethod('clearSslPreferences', args); } ///Does a best-effort attempt to pause any processing that can be paused safely, such as animations and geolocation. Note that this call does not pause JavaScript. ///To pause JavaScript globally, use [pauseTimers()]. To resume WebView, call [resume()]. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#onPause() Future pause() async { Map args = {}; await _controller._channel.invokeMethod('pause', args); } ///Resumes a WebView after a previous call to [pause()]. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#onResume() Future resume() async { Map args = {}; await _controller._channel.invokeMethod('resume', args); } ///Gets the URL that was originally requested for the current page. ///This is not always the same as the URL passed to [InAppWebView.onLoadStarted] because although the load for that URL has begun, ///the current page may not have changed. Also, there may have been redirects resulting in a different URL to that originally requested. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#getOriginalUrl() Future getOriginalUrl() async { Map args = {}; return await _controller._channel.invokeMethod('getOriginalUrl', args); } ///Scrolls the contents of this WebView down by half the page size. ///Returns `true` if the page was scrolled. /// ///[bottom] `true` to jump to bottom of page. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#pageDown(boolean) Future pageDown({@required bool bottom}) async { assert(bottom != null); Map args = {}; args.putIfAbsent("bottom", () => bottom); return await _controller._channel.invokeMethod('pageDown', args); } ///Scrolls the contents of this WebView up by half the view size. ///Returns `true` if the page was scrolled. /// ///[bottom] `true` to jump to the top of the page. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#pageUp(boolean) Future pageUp({@required bool top}) async { assert(top != null); Map args = {}; args.putIfAbsent("top", () => top); return await _controller._channel.invokeMethod('pageUp', args); } ///Saves the current WebView as a web archive. ///Returns the filename under which the file was saved, or `null` if saving the file failed. /// ///[basename] the filename where the archive should be placed. This value cannot be `null`. /// ///[autoname] if `false`, takes basename to be a file. ///If `true`, [basename] is assumed to be a directory in which a filename will be chosen according to the URL of the current page. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#saveWebArchive(java.lang.String,%20boolean,%20android.webkit.ValueCallback%3Cjava.lang.String%3E) Future saveWebArchive( {@required String basename, @required bool autoname}) async { assert(basename != null && autoname != null); Map args = {}; args.putIfAbsent("basename", () => basename); args.putIfAbsent("autoname", () => autoname); return await _controller._channel.invokeMethod('saveWebArchive', args); } ///Performs zoom in in this WebView. ///Returns `true` if zoom in succeeds, `false` if no zoom changes. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#zoomIn() Future zoomIn() async { Map args = {}; return await _controller._channel.invokeMethod('zoomIn', args); } ///Performs zoom out in this WebView. ///Returns `true` if zoom out succeeds, `false` if no zoom changes. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#zoomOut() Future zoomOut() async { Map args = {}; return await _controller._channel.invokeMethod('zoomOut', args); } ///Clears the internal back/forward list. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#clearHistory() Future clearHistory() async { Map args = {}; return await _controller._channel.invokeMethod('clearHistory', args); } ///Gets the SSL certificate for the main top-level page or null if there is no certificate (the site is not secure). /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#getCertificate() Future getCertificate() async { Map args = {}; var sslCertificateMap = (await _controller._channel.invokeMethod('getCertificate', args))?.cast(); return sslCertificateMap != null ? AndroidSslCertificate.fromMap(sslCertificateMap) : null; } ///Clears the client certificate preferences stored in response to proceeding/cancelling client cert requests. ///Note that WebView automatically clears these preferences when the system keychain is updated. ///The preferences are shared by all the WebViews that are created by the embedder application. /// ///**NOTE**: On iOS certificate-based credentials are never stored permanently. /// ///**NOTE**: available on Android 21+. /// ///**Official Android API**: https://developer.android.com/reference/android/webkit/WebView#clearClientCertPreferences(java.lang.Runnable) static Future clearClientCertPreferences() async { Map args = {}; await InAppWebViewController._staticChannel .invokeMethod('clearClientCertPreferences', args); } ///Returns a URL pointing to the privacy policy for Safe Browsing reporting. This value will never be `null`. /// ///**NOTE**: available only on Android 27+. /// ///**Official Android API**: https://developer.android.com/reference/androidx/webkit/WebViewCompat#getSafeBrowsingPrivacyPolicyUrl() static Future getSafeBrowsingPrivacyPolicyUrl() async { Map args = {}; return await InAppWebViewController._staticChannel .invokeMethod('getSafeBrowsingPrivacyPolicyUrl', args); } ///Sets the list of hosts (domain names/IP addresses) that are exempt from SafeBrowsing checks. The list is global for all the WebViews. /// /// Each rule should take one of these: ///| Rule | Example | Matches Subdomain | ///| -- | -- | -- | ///| HOSTNAME | example.com | Yes | ///| .HOSTNAME | .example.com | No | ///| IPV4_LITERAL | 192.168.1.1 | No | ///| IPV6_LITERAL_WITH_BRACKETS | [10:20:30:40:50:60:70:80] | No | /// ///All other rules, including wildcards, are invalid. The correct syntax for hosts is defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3.2.2). /// ///[hosts] represents the list of hosts. This value must never be null. /// ///**NOTE**: available only on Android 27+. /// ///**Official Android API**: https://developer.android.com/reference/androidx/webkit/WebViewCompat#getSafeBrowsingPrivacyPolicyUrl() static Future setSafeBrowsingWhitelist( {@required List hosts}) async { assert(hosts != null); Map args = {}; args.putIfAbsent('hosts', () => hosts); return await InAppWebViewController._staticChannel .invokeMethod('setSafeBrowsingWhitelist', args); } ///If WebView has already been loaded into the current process this method will return the package that was used to load it. ///Otherwise, the package that would be used if the WebView was loaded right now will be returned; ///this does not cause WebView to be loaded, so this information may become outdated at any time. ///The WebView package changes either when the current WebView package is updated, disabled, or uninstalled. ///It can also be changed through a Developer Setting. If the WebView package changes, any app process that ///has loaded WebView will be killed. ///The next time the app starts and loads WebView it will use the new WebView package instead. /// ///**NOTE**: available only on Android 26+. /// ///**Official Android API**: https://developer.android.com/reference/androidx/webkit/WebViewCompat#getCurrentWebViewPackage(android.content.Context) static Future getCurrentWebViewPackage() async { Map args = {}; Map packageInfo = (await InAppWebViewController ._staticChannel .invokeMethod('getCurrentWebViewPackage', args)) ?.cast(); return AndroidWebViewPackageInfo.fromMap(packageInfo); } } ///InAppWebViewControllerIOS class represents the iOS controller that contains only ios-specific methods for the WebView. class IOSInAppWebViewController { InAppWebViewController _controller; IOSInAppWebViewController(InAppWebViewController controller) { assert(controller != null); this._controller = controller; } ///Reloads the current page, performing end-to-end revalidation using cache-validating conditionals if possible. /// ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1414956-reloadfromorigin Future reloadFromOrigin() async { Map args = {}; await _controller._channel.invokeMethod('reloadFromOrigin', args); } ///A Boolean value indicating whether all resources on the page have been loaded over securely encrypted connections. /// ///**Official iOS API**: https://developer.apple.com/documentation/webkit/wkwebview/1415002-hasonlysecurecontent Future hasOnlySecureContent() async { Map args = {}; return await _controller._channel .invokeMethod('hasOnlySecureContent', args); } }