chore: Add sensible defaults to init lean-back mode

This commit is contained in:
PartyDonut 2025-10-18 16:37:45 +02:00
parent 9954ed7db5
commit 829bc3e34c
10 changed files with 37 additions and 25 deletions

View file

@ -621,7 +621,7 @@ class _ClientSettingsModel extends ClientSettingsModel
this.themeColor,
this.deriveColorsFromItem = true,
this.amoledBlack = false,
this.blurPlaceHolders = true,
required this.blurPlaceHolders,
this.blurUpcomingEpisodes = false,
@LocaleConvert() this.selectedLocale,
this.enableMediaKeys = true,
@ -632,7 +632,7 @@ class _ClientSettingsModel extends ClientSettingsModel
this.showAllCollectionTypes = false,
this.maxConcurrentDownloads = 2,
this.schemeVariant = DynamicSchemeVariant.rainbow,
this.backgroundImage = BackgroundType.blurred,
required this.backgroundImage,
this.checkForUpdates = true,
this.usePosterForLibrary = false,
this.useSystemIME = false,
@ -669,7 +669,6 @@ class _ClientSettingsModel extends ClientSettingsModel
@JsonKey()
final bool amoledBlack;
@override
@JsonKey()
final bool blurPlaceHolders;
@override
@JsonKey()
@ -702,7 +701,6 @@ class _ClientSettingsModel extends ClientSettingsModel
@JsonKey()
final DynamicSchemeVariant schemeVariant;
@override
@JsonKey()
final BackgroundType backgroundImage;
@override
@JsonKey()