fluttercommunity/flutter_webview_plugin

Link handling

Open

#43 opened on Mar 4, 2018

View on GitHub
 (19 comments) (0 reactions) (0 assignees)Java (1,457 stars) (919 forks)batch import
enhancementhelp wanted

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

Link handling · fluttercommunity/flutter_webview_plugin#43 | Good First Issue