style(downloads): apply dart format to download_utils.dart

Merged via #1195 without formatting; aligns it with the repo's dart format pre-commit gate.
This commit is contained in:
edde746
2026-05-30 08:48:03 +02:00
parent 4148c1c8ff
commit b8417f0277
+5 -1
View File
@@ -73,7 +73,11 @@ Future<DownloadResult?> showDownloadOptionsAndQueue(
(icon: Symbols.download_rounded, label: t.downloads.allEpisodes, value: _DownloadChoice.all),
(icon: Symbols.visibility_off_rounded, label: t.downloads.unwatchedOnly, value: _DownloadChoice.unwatched),
(icon: Symbols.filter_5_rounded, label: t.downloads.nextNUnwatched(count: 5), value: _DownloadChoice.next5),
(icon: Symbols.filter_9_plus_rounded, label: t.downloads.nextNUnwatched(count: 10), value: _DownloadChoice.next10),
(
icon: Symbols.filter_9_plus_rounded,
label: t.downloads.nextNUnwatched(count: 10),
value: _DownloadChoice.next10,
),
(icon: Symbols.tune_rounded, label: t.downloads.customAmount, value: _DownloadChoice.custom),
];
// Already-downloaded show/season: offer deletion as the last row.