Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Add powerful PDF functionality to your Flutter apps with the Nutrient Flutter SDK. View, annotate, and edit PDFs seamlessly across Android, iOS, and Web platforms.

> **Note:** This branch tracks Nutrient Flutter SDK **5.6.x** and does not track 6.0 and later. Nutrient Flutter SDK 6.0 and later are published to [pub.dev](https://pub.dev/packages/nutrient_flutter) only, where the native SDK APIs are available through the bindings API.
>
> 5.6.x continues to receive patch releases here through December 2026, for projects that aren't ready to adopt the bindings API. These patches are published to this repository only — pub.dev serves 5.6.1 and earlier — so depend on this repository directly to receive them. See the [changelog](https://www.nutrient.io/changelog/flutter/) and the [Flutter SDK 6 migration guide](https://www.nutrient.io/guides/flutter/migration-guides/flutter-6-migration-guide/). The `nightly` branch continues to receive updates.

![Nutrient Flutter SDK](screenshots/flutter.png)

## Requirements
Expand All @@ -23,9 +27,22 @@ Add powerful PDF functionality to your Flutter apps with the Nutrient Flutter SD

```yaml
dependencies:
nutrient_flutter: any
nutrient_flutter:
git:
url: https://github.com/PSPDFKit/pspdfkit-flutter.git
ref: 5.6.1
```

The instructions in this README apply to 5.6.x. New 5.6.x patch releases are
published to this repository only, so depend on it with a Git reference and bump
`ref` to each new release tag to pick up a patch.

If you don't need patches, `nutrient_flutter: ^5.6.0` also works and resolves
from pub.dev, which serves 5.6.1 and earlier. Don't use `nutrient_flutter: any`
— it resolves to 6.0.0, whose setup requirements differ from this README.

For 6.0 and later, follow the [getting started guide](https://www.nutrient.io/guides/flutter/getting-started/).

2. Run the following command:

```bash
Expand Down