---
title: "Flutter get page info | Nutrient SDK"
canonical_url: "https://www.nutrient.io/guides/flutter/viewer/page-info/"
md_url: "https://www.nutrient.io/guides/flutter/viewer/page-info.md"
last_updated: "2026-05-23T00:08:18.099Z"
description: "Discover how to retrieve PDF page information like size and rotation using Nutrient Flutter SDK. Explore the new getPageInfo() method today!"
---

# Get page information in Nutrient Flutter SDK PDF viewer

Nutrient Flutter SDK version 3.10 introduces the ability to get page information from a PDF document, including the page size, rotation, and other properties. The `getPageInfo()` method is available in the [`PdfDocument`](https://pub.dev/documentation/nutrient_flutter/latest/nutrient_flutter/PdfDocument-class.html) class. This method returns a `PdfPageInfo` object that contains information about the page.

Here’s an example of how to get page information from a document:

```dart

NutrientView(
  documentPath: documentPath,
  onDocumentLoaded: (pdfDocument) {
    final pageInfo = pdfDocument.getPageInfo(0);
        print('Page size: ${pageInfo.width} x ${pageInfo.height}');
    }
);

```

`PageInfo` currently has limited properties compared to the native SDKs. We plan to add more properties in future releases.

For more details about how to get page information using Nutrient Flutter SDK, try our [Catalog example project](https://github.com/PSPDFKit/pspdfkit-flutter).
---

## Related pages

- [Flutter image viewer library](/guides/flutter/viewer/images.md)
- [Flutter PDF viewer library](/guides/flutter/viewer.md)
- [Coordinate conversion in the Flutter PDF viewer](/guides/flutter/viewer/coordinate-conversion.md)
- [Configuring scroll direction and page transitions in our Flutter viewer](/guides/flutter/viewer/page-transition.md)
- [Customizing page navigation in our Flutter PDF viewer](/guides/flutter/viewer/page-navigation.md)
- [Nutrient Flutter SDK web PDF viewer](/guides/flutter/viewer/web.md)
- [Customizing zoom options in our Flutter PDF viewer](/guides/flutter/viewer/zooming.md)
- [Optimize PDF reading with reader view for iOS](/guides/flutter/viewer/reader-view.md)

