resumable_downloader 0.0.1
resumable_downloader: ^0.0.1 copied to clipboard
A robust download manager with resumable support, queuing, concurrency, and error handling — built on Dio.
example/lib/main.dart
import 'pages/download_home_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(home: DownloadHomePage());
}
}