flutter_plugin_pdf_viewer
flutter_plugin_pdf_viewer copied to clipboard
Error if the pdf one page
when tap on picker button get this error, the pdf file has one page only

Same problem here with an Android Emulator.
flutter_plugin_pdf_viewer: ^1.0.7
Same here. I'm using
showPicker: (_doc.count??0) > 1,
as a workaround.
on viewer.dart, I use
floatingActionButton: (widget.showPicker && widget.document.count > 1)
work for me
If you know in advance that your app will always show one page Pdf's only then you can set showPicker to false in your code to hide the picker.
PDFViewer(
document: pdfDoc,
showPicker: false,
)