Customizing page navigation in our Flutter PDF viewer

After loading a PDF document in Nutrient, you can programmatically interact with it (scrolling to different pages).

Changing the current page

A user can change the current page in the UI by swiping on a device. Pages can also be programmatically changed using the startPage configuration option, like so:

PdfConfiguration(
    startPage: 2
);