media_file_saver 0.0.2 media_file_saver: ^0.0.2 copied to clipboard
A plugin for saving images and other media files in the device's pictures directory (Android) or photo library (iOS).
media_file_saver #
🖼️ A plugin for saving images and other media files in the device's pictures directory (Android) or photo library (iOS).
Features #
- Simplified image and media file download
- Supports PNG, JPG, JPEG, GIF, MP3 and more
- Implements native permission (Android) and authorization requests (iOS)
Installation #
Add it to your pubspec.yaml file
dependencies:
media_file_saver: ^0.0.2
Install it
pub get
Import it
import 'package:media_file_saver/media_file_saver.dart;
Usage #
Eg. Saving image from cache
// Getting the cached image
final file = await DefaultCacheManager().getSingleFile("https//example.com/profile-picture.png");
// Downloading the image file to your photo library
await MediaFileSaver.saveImage(file.readAsBytes());
License #
MIT @joshuadeguzman