From 001b746f65a22173b01d0af6500df7706ab3b9b4 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Tue, 2 Dec 2025 17:06:36 +0800 Subject: [PATCH] change dynamicColor def value Signed-off-by: bggRGjQaUbCoE --- lib/utils/storage_pref.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/storage_pref.dart b/lib/utils/storage_pref.dart index b9363ccee..618b6d54f 100644 --- a/lib/utils/storage_pref.dart +++ b/lib/utils/storage_pref.dart @@ -653,7 +653,7 @@ abstract class Pref { _setting.get(SettingBoxKey.customColor, defaultValue: 0); static bool get dynamicColor => - _setting.get(SettingBoxKey.dynamicColor, defaultValue: true); + _setting.get(SettingBoxKey.dynamicColor, defaultValue: !Platform.isIOS); static bool get autoClearCache => _setting.get(SettingBoxKey.autoClearCache, defaultValue: false);