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 = YES; to allow pinch/zoom."
The problem is that I don't know where to put this code/I don't know how to use it. Can anyone help me, please?