Some helper functions for the user to stash (copy, save, etc) media from the app
npm install capacitor-stash-media
npx cap sync
savePhoto(options: { url: string; }) => Promise<void>
Param | Type |
---|---|
options |
{ url: string; } |
copyPhotoToClipboard(options: { url: string; }) => Promise<void>
Param | Type |
---|---|
options |
{ url: string; } |
shareImage(options: { url: string; title: string; }) => Promise<void>
Param | Type |
---|---|
options |
{ url: string; title: string; } |