Manually Save Annotations in React Native
PSPDFKit allows you to manually save changed, created, or deleted annotations to a document. You can trigger a manual save by calling save()
on the current document, like so:
await this.pdfRef?.current?.getDocument().save();
For more details and sample code, see the ManualSave.tsx
example from the Catalog example project.