-
Notifications
You must be signed in to change notification settings - Fork 937
New issue
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
WebviewScaffold exception after clicking back icon #89
Labels
Comments
Even I am facing this issue with following code:-
|
For now rolling back to 0.1.5 fixes this issue. Hopefully we will see a fix for this in the next release. |
i had exactly same problem, |
@agriirga I just used the url_launcher forcing a webview preview (works for my use case): void _launchUrl(String url, BuildContext context) async {
if (await canLaunch(url)) {
await launch(url, forceWebView: true);
} else {
showDialog(
context: context,
builder: (BuildContext context) {
return new AlertDialog(
title: new Text('Sprintime'),
content: new Text('Could not launch the recipe url'),
);
},
);
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After open the webview with an
appBar
, I click on the back button and receive a exception from:File:
broadcast_stream_controller.dart
Exception:
My Code:
The text was updated successfully, but these errors were encountered: