fluttercommunity / flutter_webview_plugin

Community WebView Plugin - Allows Flutter to communicate with a native WebView.
https://pub.dev/packages/flutter_webview_plugin
Other
1.48k stars 929 forks source link

how to trigger onUrlChange ? #854

Open chinafelix opened 3 years ago

chinafelix commented 3 years ago

I can’t monitor it when switching the h5 page in webview, how can I do it?

this is my code:

void initState() { super.initState(); _urlChangeListener = flutterWebviewPlugin.onUrlChanged.listen((String url) { print('123456789876543, $url'); if(mounted) {

  }
});

}