Arnaud Delubac
Arnaud Delubac
line 143 in lib/src/viewer.dart: bottomNavigationBar: (widget.showNavigation || widget.document.count > 1) should be bottomNavigationBar: (widget.showNavigation && widget.document.count > 1) or just: bottomNavigationBar: (widget.showNavigation)
Hi, thanks for pointing it, i will work on it as soon as i can, but if you wish you can still do a PR with this enhancement :)
well, adding a search Engine is not an easy task, it's surely a nice enhancement but it may take some times
Hi, sorry for the late answer. Have you checked the example code?: ```Dart PDFView( filePath: widget.path, fitEachPage: false, dualPageMode: true, displayAsBook: true, dualPageWithBreak: true, enableSwipe: true, swipeHorizontal: true, autoSpacing: false,...
hi, can you try to set autoSpacing to true and displayAsBook to false: ```dart autoSpacing: true, displayAsBook: false, ```
Hi, as state on pub.dev, this plugin is only compatible with Android and iOS
ok, now i see the problem, your controller has to be set in the onViewCreated function callback: ```dart onViewCreated: (PDFViewController pdfViewController) { pdfController = pdfViewController; } ```
i need more info and context to be able to help you, thx
Hi, can you paste the piece of code you are using for that? Thanks
Hi, setPage is working correctly, it's a bool because we need to know that the page has been set on the native side (APV) or not, so true => Page...