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
Hi,
It's possible to detect clicks on links inside a website and block the navigation.
Something like:
shouldOverrideUrlLoading: (controller, url) async { if (url.startsWith('http://') || url.startsWith('https://')) { if (await canLaunch(url)) { await launch(url); return true; // Prevent navigation within WebView } } return false; // Allow navigation within WebView },
The text was updated successfully, but these errors were encountered:
It looks like you need a blacklist, and I will consider adding this feature next.
Sorry, something went wrong.
No branches or pull requests
Hi,
It's possible to detect clicks on links inside a website and block the navigation.
Something like:
The text was updated successfully, but these errors were encountered: