如何使用颤振在网页视图中打开pdf文档
Posted
技术标签:
【中文标题】如何使用颤振在网页视图中打开pdf文档【英文标题】:how to open the pdf document inside web view using flutter 【发布时间】:2020-04-21 22:15:22 【问题描述】:我正在使用颤振创建应用程序。我正在努力使用颤振在 Web 视图中打开可移植文档格式。请帮忙解决这个问题
正文:安全区域( 孩子:WebView( initialUrl:pdf文件路径, javascriptMode: JavascriptMode.unrestricted, onWebViewCreated: (WebViewController webViewController) _webViewController = webViewController; _webViewController.clearCache(); _webViewController.reload(); , ), ),
我的代码
SafeArea( child: WebView( initialUrl: filePath, javascriptMode:
JavascriptMode.unrestricted,
onWebViewCreated: (WebViewController webViewController) _webViewController = webViewController;
_webViewController.clearCache();
_webViewController.reload(); , ), ),
【问题讨论】:
请添加一些代码 @Ggriffo 请找到以下代码主体: SafeArea( child: WebView( initialUrl: filePath, javascriptMode: JavascriptMode.unrestricted, onWebViewCreated: (WebViewController webViewController) _webViewController = webViewController; _webViewController.clearCache(); _webViewController.reload(); , ), ), 总是将代码添加到问题中,而不是在 cmets 中: 【参考方案1】:试试这个:
import 'dart: html' as html;
html.window.open ('http: ///www.website.com/document.pdf');
您可以参考:https://pub.dev/packages/pdf
【讨论】:
以上是关于如何使用颤振在网页视图中打开pdf文档的主要内容,如果未能解决你的问题,请参考以下文章