From 3ed2036c12b59c7d49225408961021724ddeedac Mon Sep 17 00:00:00 2001 From: nahnah Date: Tue, 27 Jan 2026 23:23:09 +0000 Subject: [PATCH] [fix]: Add dialog theme for florid --- lib/themes/app_themes.dart | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/themes/app_themes.dart b/lib/themes/app_themes.dart index b27eef4..5277bd3 100644 --- a/lib/themes/app_themes.dart +++ b/lib/themes/app_themes.dart @@ -222,6 +222,13 @@ class AppThemes { behavior: SnackBarBehavior.floating, shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(24)), ), + dialogTheme: DialogThemeData( + backgroundColor: ColorScheme.fromSeed( + seedColor: kAppColor, + brightness: Brightness.light, + ).surfaceContainer, + shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(24)), + ), ); }