mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
194 lines
6.6 KiB
Dart
194 lines
6.6 KiB
Dart
// ignore_for_file: use_build_context_synchronously
|
|
|
|
import 'package:dynamic_themes/dynamic_themes.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
|
import 'package:revanced_manager/services/manager_api.dart';
|
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
final _settingViewModel = SettingsViewModel();
|
|
|
|
// ignore: constant_identifier_names
|
|
const int ANDROID_12_SDK_VERSION = 31;
|
|
|
|
class SUpdateTheme extends BaseViewModel {
|
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
|
|
|
bool getDynamicThemeStatus() {
|
|
return _managerAPI.getUseDynamicTheme();
|
|
}
|
|
|
|
Future<void> setUseDynamicTheme(BuildContext context, bool value) async {
|
|
await _managerAPI.setUseDynamicTheme(value);
|
|
final int currentTheme = (DynamicTheme.of(context)!.themeId ~/ 2) * 2;
|
|
await DynamicTheme.of(context)!.setTheme(currentTheme + (value ? 1 : 0));
|
|
notifyListeners();
|
|
}
|
|
|
|
int getThemeMode() {
|
|
return _managerAPI.getThemeMode();
|
|
}
|
|
|
|
Future<void> setThemeMode(BuildContext context, int value) async {
|
|
await _managerAPI.setThemeMode(value);
|
|
final bool isDynamicTheme = DynamicTheme.of(context)!.themeId.isEven;
|
|
await DynamicTheme.of(context)!.setTheme(value * 2 + (isDynamicTheme ? 0 : 1));
|
|
final bool isLight = value != 2 && (value == 1 || DynamicTheme.of(context)!.theme.brightness == Brightness.light);
|
|
SystemChrome.setSystemUIOverlayStyle(
|
|
SystemUiOverlayStyle(
|
|
systemNavigationBarIconBrightness:
|
|
isLight ? Brightness.dark : Brightness.light,
|
|
),
|
|
);
|
|
notifyListeners();
|
|
}
|
|
|
|
I18nText getThemeModeName() {
|
|
switch (getThemeMode()) {
|
|
case 0:
|
|
return I18nText('settingsView.systemThemeLabel');
|
|
case 1:
|
|
return I18nText('settingsView.lightThemeLabel');
|
|
case 2:
|
|
return I18nText('settingsView.darkThemeLabel');
|
|
default:
|
|
return I18nText('settingsView.systemThemeLabel');
|
|
}
|
|
}
|
|
|
|
Future<void> showThemeDialog(BuildContext context) async {
|
|
final ValueNotifier<int> newTheme = ValueNotifier(getThemeMode());
|
|
|
|
return showDialog(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
title: I18nText('settingsView.themeModeLabel'),
|
|
icon: const Icon(Icons.palette),
|
|
contentPadding: const EdgeInsets.symmetric(vertical: 16),
|
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
content: SingleChildScrollView(
|
|
child: ValueListenableBuilder(
|
|
valueListenable: newTheme,
|
|
builder: (context, value, child) {
|
|
return Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
RadioListTile(
|
|
title: I18nText('settingsView.systemThemeLabel'),
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 16),
|
|
value: 0,
|
|
groupValue: value,
|
|
onChanged: (value) {
|
|
newTheme.value = value!;
|
|
},
|
|
),
|
|
RadioListTile(
|
|
title: I18nText('settingsView.lightThemeLabel'),
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 16),
|
|
value: 1,
|
|
groupValue: value,
|
|
onChanged: (value) {
|
|
newTheme.value = value!;
|
|
},
|
|
),
|
|
RadioListTile(
|
|
title: I18nText('settingsView.darkThemeLabel'),
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 16),
|
|
value: 2,
|
|
groupValue: value,
|
|
onChanged: (value) {
|
|
newTheme.value = value!;
|
|
},
|
|
),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
),
|
|
actions: <Widget>[
|
|
CustomMaterialButton(
|
|
isFilled: false,
|
|
label: I18nText('cancelButton'),
|
|
onPressed: () {
|
|
Navigator.of(context).pop();
|
|
},
|
|
),
|
|
CustomMaterialButton(
|
|
label: I18nText('okButton'),
|
|
onPressed: () {
|
|
setThemeMode(context, newTheme.value);
|
|
Navigator.of(context).pop();
|
|
},
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
final sUpdateTheme = SUpdateTheme();
|
|
class SUpdateThemeUI extends StatelessWidget {
|
|
const SUpdateThemeUI({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SettingsSection(
|
|
title: 'settingsView.appearanceSectionTitle',
|
|
children: <Widget>[
|
|
ListTile(
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
title: I18nText(
|
|
'settingsView.themeModeLabel',
|
|
child: const Text(
|
|
'',
|
|
style: TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
trailing: CustomMaterialButton(
|
|
label: sUpdateTheme.getThemeModeName(),
|
|
onPressed: () => { sUpdateTheme.showThemeDialog(context) },
|
|
),
|
|
onTap: () => { sUpdateTheme.showThemeDialog(context) },
|
|
),
|
|
FutureBuilder<int>(
|
|
future: _settingViewModel.getSdkVersion(),
|
|
builder: (context, snapshot) => Visibility(
|
|
visible:
|
|
snapshot.hasData && snapshot.data! >= ANDROID_12_SDK_VERSION,
|
|
child: SwitchListTile(
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
title: I18nText(
|
|
'settingsView.dynamicThemeLabel',
|
|
child: const Text(
|
|
'',
|
|
style: TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
subtitle: I18nText('settingsView.dynamicThemeHint'),
|
|
value: _settingViewModel.sUpdateTheme.getDynamicThemeStatus(),
|
|
onChanged: (value) => {
|
|
_settingViewModel.sUpdateTheme.setUseDynamicTheme(
|
|
context,
|
|
value,
|
|
),
|
|
},
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|