在 Flutter App 中显示 PDF 或 PPT 文件

Display PDF or PPT files in the Flutter App

我想在应用程序中显示我的 PDF 和 PPT 文件,而无需在 Flutter 中使用任何其他应用程序。 不是来自本地资产,而是来自网址。

对于 PDF,您可以使用此包:https://pub.dev/packages/advance_pdf_viewer

示例:

从 URL

加载

PDFDocument doc = await PDFDocument.fromURL(yourURL);

Container(
     child: PDFViewer(document: doc)),
    );