-
Notifications
You must be signed in to change notification settings - Fork 934
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
Can not open url in iOS #229
Comments
@gunadharma It's working here. Can you describe more how you implemented the Webview Plugin or more info about your problem? |
Hi @jordansilva thanks for your comment, here is how i implement the plugin:
Is there any settings or code that I missed? Please help.. |
I'm not doing this way. ...
routes: {
"/": (_) => WebView(),
}
...
class WebView extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _WebViewState();
}
}
class _WebViewState extends State<WebView> {
String _url = "https://www.google.com";
@override
Widget build(BuildContext context) {
return new WebviewScaffold(
url: _url,
appBar: AppBar(),
);
}
} |
Oh I see. I will try to follow your way. Thank you very much @jordansilva |
@jordansilva Still can not open. I guess it is because the link is open new window/tab. not in the same window. how can we solve this? |
@gunadharma |
@jordansilva I am trying to click button which open url in the new window/tab but it won't open. |
@gunadharma Check this code that I shared. I guess is the same thing that you're trying. |
@jordansilva Okay I will check the code that you shared. Thank you very much :) |
@gunadharma Try it! |
@l1Dan Can you check which |
flutter clean && flutter run @jordansilva It is working, but hava a trouble. *** First throw call stack: =================================== |
@l1Dan Can you check |
@jordansilva OK! May be the same problem. Thank you so much! |
Fixed as of |
We are facing the same issue. The site with https are getting opened in Android as well as in iPhone. However sites with http are not getting loaded in iPhone. |
@deligence Here is the solution: #94 (comment) |
Same here. The webiste is being loaded on Android but I get a blank white screen on ios |
@folivi it should work, but you need to add keys to ios #94 (comment) I also added this to main README |
I try to open url in Android using Flutter Webview Plugin and it works, but in iOS simulator it doesn't work. For example: I open google.com and then I search a website, I can not open the site by clicking it in google search list. Please help to resolve this..
The text was updated successfully, but these errors were encountered: