Deependra Chansoliya
Deependra Chansoliya
This worked for me. ``` flutterWebviewPlugin.onUrlChanged.listen((String url) async { if ( ! (url.startsWith("http:") ) { flutterWebviewPlugin.goBack(); _launchURL(url); //use url launcher plugin } } ```
In ```void initState(){ }```
Remove async . check [here](https://pub.dev/packages/flutter_webview_plugin/example). 