How to save an image to the photo gallery using Flutter?
https://pub.dev/packages/gallery_saver this plugin saves images and video to gallery/photos. You just need to provide it with path to temp file that you got from Camera(or even network url, it also works): GallerySaver.saveVideo(recordedVideo.path); GallerySaver.saveImage(recordedImage.path); **** DEPRICATED use something else.