fluttercommunity / flutter_webview_plugin

Community WebView Plugin - Allows Flutter to communicate with a native WebView.
https://pub.dev/packages/flutter_webview_plugin
Other
1.48k stars 930 forks source link

Can't open a pdf link on a page. Any workarounds? #787

Open willvlad opened 4 years ago

willvlad commented 4 years ago

Can't open a pdf link on a page. Any workarounds?

aoeldeeb commented 3 years ago

same issue any update?

whiteLT commented 3 years ago

Same, any update?

YasserYka commented 3 years ago

My workaround

webview.onUrlChanged.listen((String url) async {
      if (url.endsWith('pdf')) {
        canLaunch(url).then((lau) {
          launch(url);
        });
      }
});