Merge branch 'main' into re7gog

This commit is contained in:
Григорий Величко
2023-12-24 18:37:11 +03:00
committed by GitHub
28 changed files with 152 additions and 62 deletions

View File

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