fast_download_manager 1.0.0
fast_download_manager: ^1.0.0 copied to clipboard
A lightweight Flutter package for downloading files with real-time progress tracking.
Fast Download Manager #
A lightweight Flutter package for downloading files with real-time progress tracking.
Features #
- Download files from URL
- Real-time download progress
- Simple and easy-to-use API
- Null Safety support
- Flutter compatible
Installation #
Add this to your pubspec.yaml:
yaml dependencies: fast_download_manager: ^1.0.0
Usage #
dart import 'package:fast_download_manager/fast_download_manager.dart';
await FastDownloader.download( url: 'https://example.com/file.pdf', savePath: '/storage/emulated/0/Download/file.pdf', onProgress: (progress) { print('${(progress * 100).toStringAsFixed(0)}%'); }, );
Example #
dart await FastDownloader.download( url: fileUrl, savePath: filePath, );
License #
MIT License