flutter_pdfview
flutter_pdfview copied to clipboard
Increase max zoom level on Android
Hello,
is it possible to increase the zoom-depth on android? With this plugin I can not zoom enough into the PDF File.
Thanks
Same issue here
Same issue here as well.
I also had this same issue. There's no way to set zoom level and max zoom seems lower in Android than iOS. I fixed with this package, which seems be a fork of flutter_pdfview.
To get zoom in/out and other preview functionalities, I changed from flutter_pdfview to pdfx packages. What I did inside the build method for changing from flutter_pdfview (code excerpt):
...
body: PDFView(filePath: path),
...
To pdfx (code excerpt):
...
body: PdfView(controller: PdfController(document: PdfDocument.openFile(path))),
...
The path
is a String
variable.
A final reason you should try pdfx
is: it is well positioned in terms of overall rated.
A did all tests at Android-11's real device.