Flutter: how to enable gestures in a web view?
问题 I would like to pinch in and out to zoom in my web view page in Flutter. I did some researches online and I found this somewhere: "Although pinch and zoom are built-in to WebView (Android) and UIWebView (iOS), they need to be "switched-on". In Android, the plugin needs to call the following: this.webView.getSettings().setBuiltInZoomControls(true); this.webView.getSettings().setSupportZoom(true); to allow pinch/zoom. In iOS, the plugin needs to call the following: self.webview.scalesPageToFit