如何在 flutter 中的 webview 中显示 pdf。
我已经将 pdf 文件上传到 fireabse 数据库和存储。 .
现在我想在检索页面或主屏幕中下载并打开 te pdf
我也收到了上传的pdf的下载地址
Container(
child: PDfFile1 != null && WCardPDFURL == null ? PDF.file(
PDfFile1,
height: 600,
width: MediaQuery.of(context).size.width * 0.90,
) : PDfFile1 == null && WCardPDFURL == null?
FlatButton(
onPressed: (){
_getLocalImage4();
}, child: Icon(Icons.picture_as_pdf,size: 80,color:Colors.red,) ) :
//Image.file(PDfFile1, width: 200, height: 100,),
Image.file(
PDfFile1,
fit: BoxFit.cover,
height: 250,
),
),
答案 0 :(得分:1)
如果您的 PDF 文件在 firebase 存储中,您可以使用 firebase 存储为您的 PDF 创建一个 url。然后使用 webview_flutter
插件在 Web_view 中打开此 URL。