fluttercommunity / fluttercommunity/flutter_webview_plugin
Link handling
Open
enhancement
help wanted
- 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
Assessment
This issue has not been assessed yet.