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 931 forks source link

Load pdf from assets into Webview #547

Open isorensen opened 5 years ago

isorensen commented 5 years ago

Hello, I'm trying visualize a pre-loaded pdf file (project asset) with Webview, and it works. However, I can't do it without entering full file path (local).

I'd like to achieve: WebviewScaffold( url: 'assets/pdfs/doc01.pdf', withLocalUrl: true)

But I need to enter this in order to work: WebviewScaffold( url: 'file:///Users/eduardosorensen/flutter_projects/my_project/assets/pdfs/doc01.pdf', withLocalUrl: true)

Any ideas? Thank you

deepak-gts commented 2 years ago

i get the same issue