readpdf 0.0.1
readpdf: ^0.0.1 copied to clipboard
A plugin to read pdf files
readpdf #
A plugin to read pdf files
Features #
Load a PDF file. Scroll handle. Document sources. Pages fit policy (WIDTH, HEIGHT, BOTH), Bitmap quality, Double Tap Zooming.
Getting Started #
This is a port from android to flutter to read pdf files. The original implementation can be found on: https://github.com/barteksc/AndroidPdfViewer
To initialize plugin: final _readpdfPlugin = Readpdf();
View PDF file: String title = ""; String grade = ""; String lang = "en"; _readpdfPlugin.viewPdf('path/Beginning Flutter.pdf', title, grade, lang);