Eduard Carreras
Results
2
comments of
Eduard Carreras
Any plans on merge this to fix #37?
My implementation on @dodatw workaround, just in case someone needs it: ``` Future waitForCompletion() async { var completer = Completer(); listener() { if (webview!.isNavigating.value == false) { webview!.isNavigating.removeListener(listener); completer.complete(false); }...