(19 comentários) (0 reação) (0 responsável)Java (919 forks)batch import
enhancementhelp wanted

Métricas do repositório

Stars
 (1.457 estrelas)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 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?

Guia do colaborador