Reputation: 335
is there any equivalent of this in flutter for intercept all request from webview
webview.webViewClient = object : WebViewClient() {
override fun shouldInterceptRequest(view: WebView?,request: WebResourceRequest? ): WebResourceResponse? {
return super.shouldInterceptRequest(view, request)}}
thanks
Upvotes: 2
Views: 2457
Reputation: 16
https://pub.dev/packages/flutter_inappwebview
useShouldInterceptFetchRequest function should help!
Upvotes: 0