mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
16 lines
610 B
Dart
16 lines
610 B
Dart
import 'package:background_downloader/background_downloader.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
|
|
part 'background_download_provider.g.dart';
|
|
|
|
@Riverpod(keepAlive: true)
|
|
FileDownloader backgroundDownloader(BackgroundDownloaderRef ref) {
|
|
return FileDownloader()
|
|
..trackTasks()
|
|
..configureNotification(
|
|
running: const TaskNotification('Downloading', 'file: {filename}'),
|
|
complete: const TaskNotification('Download finished', 'file: {filename}'),
|
|
paused: const TaskNotification('Download paused', 'file: {filename}'),
|
|
progressBar: true,
|
|
);
|
|
}
|