Nutrient .NET MAUI SDK
.NET MAUI SDK wrapping the native Nutrient iOS and Android SDKs. Provides PDF viewing, annotation, form filling, and digital signing from a single C# API targeting iOS and Android from a .NET MAUI project.
Documentation
Single-fetch LLM-curated dumps — prefer these over the human-shaped docs site for API/guide look-ups:
- API reference: https://www.nutrient.io/api/maui/llms.txt
- Guides: https://www.nutrient.io/guides/maui/llms.txt
- Cross-product index (other Nutrient SDKs): https://www.nutrient.io/llms.txt
Key Concepts
- NuGet package:
Nutrient.MAUI.SDK. The legacyPSPDFKit.MAUI.SDKis the pre-rebrand name. - Registration: in
MauiProgram.cs, chain.RegisterPSPDFKitSdk()onto yourMauiAppBuilder— the method name was deliberately preserved post-rebrand:builder.RegisterPSPDFKitSdk(); - Main control:
PDFView(the legacyPSPDFKitViewis the pre-rebrand name). The XAML namespace remainsclr-namespace:PSPDFKit.Sdk;assembly=Sdkpost-rebrand. - Initialisation lifecycle: all
PDFViewoperations must wait for thePDFView.Initializedevent. CallingPDFView.Controllerbefore that event fires will fail.