Reputation: 21
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.
Upvotes: 1
Views: 1092
Reputation: 686
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)),
);
Upvotes: 2