binSaed / flutter_cached_pdfview

Enhanced PDF view for Flutter.
https://pub.dev/packages/flutter_cached_pdfview
MIT License
118 stars 67 forks source link

Printing and sharing pdf from url #40

Closed qbait closed 3 years ago

qbait commented 3 years ago

The pdf from URL is already cached by the package, so it would be super convenient to be able to share and print that cached pdf.

binSaed commented 3 years ago

@qbait u can access file path like this PDF().cachedFromUrl( url, whenDone: (String filePath) => print(filePath)) after get file path u can make what u want like share, print etc

qbait commented 3 years ago

Perfect. Thank you!