From 11d6164bc7de6a13716eb58ba05840697fe615b5 Mon Sep 17 00:00:00 2001 From: krille-chan Date: Sun, 26 May 2024 08:42:14 +0200 Subject: [PATCH] chore: Follow up adapt to new flutter 3.22 material colors --- lib/config/themes.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/config/themes.dart b/lib/config/themes.dart index 58feeab70..fc1ec0b4c 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -107,6 +107,8 @@ abstract class FluffyThemes { : null, surfaceTintColor: FluffyThemes.isColumnMode(context) ? colorScheme.surface : null, + backgroundColor: + FluffyThemes.isColumnMode(context) ? colorScheme.surface : null, systemOverlayStyle: SystemUiOverlayStyle( statusBarColor: Colors.transparent, statusBarIconBrightness: brightness.reversed,