-
Notifications
You must be signed in to change notification settings - Fork 936
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
Link handling #43
Comments
@wkethman You mean You replaced from
to like this?
I guess it doesn't support If you append feature for |
Not supported yet. Have not done that yet, but we should probably be able to catch that kind of call from the webview and call |
The url_launcher approach works for me, except the Android webview also renders the ERR_UNKNOWN_URL_SCHEME error. I'd also need to interrupt loading; something like #14. |
do we have any way to handle error page on android yet? I can redirect to previous url after error. However it still shows the error which is not a good user experience. |
is this issue resolved or pending? i am facing the same problem. Also not working when I click to whatsapp share button. It is opening in google play store. |
having the same issue when clicking on tel link, any solutions so far ? |
Here is a solution to disable navigation for tel and mailto for now: |
meh, just listen to the
|
I've used a slightly different approach. For my use case I only needed to override the telephone links. I've used the invalidUrlRegex parameter of the WebviewScaffold to suppress navigation to tel: links:
I've used url_launcher to actually load the tel: links. In order to do so I listen to the state changed (
Note that the Also the tel: links load fine on iOS (also after this implementation), this is basically a work around for Android. |
choose file is not working on flutter web app......call works fine thank you for your help |
Hi @wooldridgetm, I have problem and dont know how or where to put this code on the webview script. I really appreciate. |
@djks74 please did you find a solution |
if u have solution please share |
yes please I really need it in my project |
You mean for choose file and geolocation? Its working perfectly. but if you want the navigation link working, better using https://pub.dev/packages/webview_flutter with launcURL WebView(
_launchURL(String url) async { |
@djks74 thank you so much, please do you have any idea how to check connexion in webview flutter. thank you in advance |
Can you please describe what connection you mean? in flutter to phone to see debug? |
No I mean to replace WEB PAGE NO AVAILABLE with my customize page if I lost the connexion and reload it if I'm connected again. |
@djks74 please can you share with us your solution (the complete code) with flutter_webview_plugin because in my case I can't, unfortunately, change to webview_flutter |
Implementing the plugin as shown:
Any suggestions?
The text was updated successfully, but these errors were encountered: