Parallel download option (#1169)

This commit is contained in:
Imran Remtulla
2023-12-21 15:44:38 -05:00
parent 80bddf8a6b
commit 1bc2ec9461
21 changed files with 68 additions and 14 deletions

View File

@@ -327,6 +327,19 @@ class _SettingsPageState extends State<SettingsPage> {
})
],
),
height16,
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(child: Text(tr('parallelDownloads'))),
Switch(
value: settingsProvider.parallelDownloads,
onChanged: (value) {
settingsProvider.parallelDownloads =
value;
})
],
),
height32,
Text(
tr('sourceSpecific'),