1
votes

I want to show my PDF and PPT files within the app without using any other app in Flutter. Not from the local assets but from web Urls.

1

1 Answers

1
votes

For PDF you can use this package: https://pub.dev/packages/advance_pdf_viewer

Example:

Load from URL

PDFDocument doc = await PDFDocument.fromURL(yourURL);

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