wallpapers and ui cleanup

This commit is contained in:
Christien Rioux 2025-03-17 20:30:20 -04:00
parent 77c68aa45f
commit 6bd60207d8
32 changed files with 17947 additions and 150 deletions

View file

@ -16,6 +16,7 @@ _$ThemePreferencesImpl _$$ThemePreferencesImplFromJson(
? ColorPreference.vapor
: ColorPreference.fromJson(json['color_preference']),
displayScale: (json['display_scale'] as num?)?.toDouble() ?? 1,
enableWallpaper: json['enable_wallpaper'] as bool? ?? true,
);
Map<String, dynamic> _$$ThemePreferencesImplToJson(
@ -24,4 +25,5 @@ Map<String, dynamic> _$$ThemePreferencesImplToJson(
'brightness_preference': instance.brightnessPreference.toJson(),
'color_preference': instance.colorPreference.toJson(),
'display_scale': instance.displayScale,
'enable_wallpaper': instance.enableWallpaper,
};