From ad85bc432cbd055f9fd63e85a6fcfca96f2933c3 Mon Sep 17 00:00:00 2001 From: dom Date: Wed, 22 Jul 2026 22:09:42 +0800 Subject: [PATCH] fix theme switch Signed-off-by: dom --- lib/pages/setting/pages/color_select.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/setting/pages/color_select.dart b/lib/pages/setting/pages/color_select.dart index b38dfd623..d8e322dfc 100644 --- a/lib/pages/setting/pages/color_select.dart +++ b/lib/pages/setting/pages/color_select.dart @@ -139,7 +139,7 @@ class _ColorSelectPageState extends State { padding: padding + const .all(12), child: Obx( () => AnimatedHeight( - expand: ctr.dynamicColor.value, + expand: !ctr.dynamicColor.value, duration: const Duration(milliseconds: 200), child: Wrap( alignment: .center,