嗨,我正在 flutter 中构建一个全文档阅读器应用程序,但我无法获取 word ppt 文件的包。 flutter中有很多PDF查看器包,但没有doc docx ppt等文件的包。 现在请让我如何在颤振中实现这一目标
我搜索了很多软件包和其他第三方库,但没有找到此功能的任何特定软件包
依赖性:
flutter_plugin_pdf_viewer: ^latest_version
syncfusion_flutter_docviewer: ^latest_version
syncfusion_flutter_presentation: ^latest_version
PDF:
body: PDFViewer(document: PDFDocument(file: pdfUrl)),
对于单词:
body: SfDocViewer(filePath: docUrl),
对于电源点:
body: SfPresentation(filePath: pptUrl),