We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
await FlutterWebBrowser.openWebPage(url: url); hangs forever
await FlutterWebBrowser.openWebPage(url: url);
flutter_web_browser/android/src/main/java/dev/vbonnet/flutterwebbrowser/FlutterWebBrowserPlugin.java
Lines 42 to 53 in 2eb43f1
result is unused and never completes the platform channel call.
result
It should at least result.success("launched") be called after successfully launching the intent.
result.success("launched")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
await FlutterWebBrowser.openWebPage(url: url);
hangs foreverflutter_web_browser/android/src/main/java/dev/vbonnet/flutterwebbrowser/FlutterWebBrowserPlugin.java
Lines 42 to 53 in 2eb43f1
result
is unused and never completes the platform channel call.It should at least
result.success("launched")
be called after successfully launching the intent.The text was updated successfully, but these errors were encountered: