fluttercommunity / fluttercommunity/flutter_webview_plugin
Link handling
- Dominant language
- Java
- Stars
- 1.5k
- Forks
- 938
- PR merge metrics
- No merged PRs in 30d
Description
Implementing the plugin as shown:
```
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
routes: {
"/": (_) => new WebviewScaffold(
url: "http://wckethman.com/htree/my-app/www/index.html",
withJavascript: true,
)
},
);
}
}
This works fine but when clicking on tel: links "net::ERR_UNKNOWN_URL_SCHEME" thrown
```
Any suggestions?
Contributor guide
No contributing guide indexed for this repository
Research direction
Start with the WebviewScaffold route shown in the issue and inspect how the plugin handles navigation for tel: links. Reproduce the net::ERR_UNKNOWN_URL_SCHEME error, then verify that tel: links are handled without that error and that the existing webview behavior remains intact.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- dart, flutter, java
- Domain
- mobile
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100