syncfusion / flutter-widgets

Syncfusion Flutter widgets libraries include high quality UI widgets and file-format packages to help you create rich, high-quality applications for iOS, Android, and web from a single code base.
1.46k stars 680 forks source link

[pdf_viewer] How to zoom out below 0 zoom level? #1772

Closed Wizzel1 closed 2 months ago

Wizzel1 commented 2 months ago

When I am showing the pdf viewer in full screen and the page fills the entire page width, I can only read about 1/4 of the page until i have to scroll.

Is there some way to zoom out so that I can at least see a full page? This would require a zoom level below 0

immankumarsync commented 2 months ago

Hi @Wizzel1, at present, when displaying the PDF document in continuous page layout the page will fit to the width of the SfPdfViewer widget. You can use PdfPageLayoutMode.single to fit the entire page in the SfPdfViewer widget. Please refer to the documentation to learn more about Page layout and Scrolling options in Flutter PDF Viewer

Wizzel1 commented 2 months ago

Thanks