Prachi. D
Prachi. D

Reputation: 21

Display PDF or PPT files in the Flutter App

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

Answers (1)

Tushar Patel
Tushar Patel

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

Related Questions