This commit is contained in:
Alex
2025-04-14 15:17:20 -05:00
parent 5b7d8cb3ef
commit c334eba9b7
105 changed files with 50350 additions and 31087 deletions

View File

@@ -122,7 +122,7 @@ class PrimaryColorSetting extends HookConsumerWidget {
Align(
alignment: Alignment.center,
child: Text(
"theme_setting_primary_color_title".tr(),
"primary_color_title".tr(),
style: context.textTheme.titleLarge,
),
),
@@ -140,7 +140,7 @@ class PrimaryColorSetting extends HookConsumerWidget {
borderRadius: BorderRadius.circular(15),
),
title: Text(
'theme_setting_system_primary_color_title'.tr(),
"system_primary_color_title".tr(),
style: context.textTheme.bodyLarge?.copyWith(
fontWeight: FontWeight.w500,
height: 1.5,
@@ -194,13 +194,13 @@ class PrimaryColorSetting extends HookConsumerWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"theme_setting_primary_color_title".tr(),
"primary_color_title".tr(),
style: context.textTheme.bodyLarge?.copyWith(
fontWeight: FontWeight.w500,
),
),
Text(
"theme_setting_primary_color_subtitle".tr(),
"primary_color_subtitle".tr(),
style: context.textTheme.bodyMedium
?.copyWith(color: context.colorScheme.onSurfaceSecondary),
),

View File

@@ -81,23 +81,23 @@ class ThemeSetting extends HookConsumerWidget {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SettingsSubTitle(title: "theme_setting_theme_title".tr()),
SettingsSubTitle(title: "theme_title".tr()),
SettingsSwitchListTile(
valueNotifier: isSystemTheme,
title: 'theme_setting_system_theme_switch'.tr(),
title: "system_theme_switch".tr(),
onChanged: onSystemThemeChange,
),
if (currentTheme.value != ThemeMode.system)
SettingsSwitchListTile(
valueNotifier: isDarkTheme,
title: 'theme_setting_dark_mode_switch'.tr(),
title: "dark_mode_switch".tr(),
onChanged: onThemeChange,
),
const PrimaryColorSetting(),
SettingsSwitchListTile(
valueNotifier: applyThemeToBackgroundProvider,
title: "theme_setting_colorful_interface_title".tr(),
subtitle: 'theme_setting_colorful_interface_subtitle'.tr(),
title: "colorful_interface_title".tr(),
subtitle: "colorful_interface_subtitle".tr(),
onChanged: onSurfaceColorSettingChange,
),
],