From f7e4d6ff0717facb49447c06cedadea90647f156 Mon Sep 17 00:00:00 2001 From: Faris Armoush Date: Wed, 2 Jul 2025 09:33:45 +0300 Subject: [PATCH] added default dialog background color to be white. --- lib/utils/theme/theme.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/utils/theme/theme.dart b/lib/utils/theme/theme.dart index 5ac61afa..5c036762 100644 --- a/lib/utils/theme/theme.dart +++ b/lib/utils/theme/theme.dart @@ -52,4 +52,7 @@ final myTheme = ThemeData( borderRadius: BorderRadius.circular(4), ), ), + dialogTheme: const DialogThemeData( + backgroundColor: ColorsManager.whiteColors, + ), );