You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can do this with no issues - I have got it working with the onUrlChange checking for some values returned in a url and reacting to those which involves an calling an async command which is executed successfully.
Is it possible to invoke async method in callback, e.g
webview.onUrlChanged.listen((url) async{
await Future.delayed(Duration(seconds: 5));
print('Done'!);
})
Now it doesn't wait for the method to finish.
The text was updated successfully, but these errors were encountered: