Using Flutter on mobile (iOS and Android), how can I move media to an album?
I tried to combine gallery_saver
and photo_manager
on iOS:
- I read a media
AssetEntity
fromRecents
- Saved the
AssetEntity
file under an album withGallerySaver.saveImage
. At this pointRecents
showed the same media twice, makes sense. - Attempted to delete with
PhotoManager.editor.deleteWithIds
the originalAssetEntity
file, and it showed a native popup asking the user if it's ok to delete the media. Bad user experience...
Is there a way to change AssetEntity
album, without creating a new file?
from How to move a photo/video to an album with Flutter on mobile (iOS and Android)?
No comments:
Post a Comment