Hello,
I'm using the latest version of Pdf-Viewer to display PDF files in my Android application.
I’ve added two floating buttons ("Next" and "Previous") that use PdfView.jumpTo(pageNumber) to navigate between pages.
In portrait mode, everything works as expected: each click on "Next" goes to the next page.
In landscape mode, the PDF is displayed across the full width, and clicking "Next" calls jumpTo() and goes directly to the next page, but I would like it to scroll down within the current page instead.
Question: How can I make the "Next" button scroll down within the current page?
Thank you for your help!