notifications colors fix

This commit is contained in:
amirrezaghabeli
2025-09-29 09:15:40 +03:30
parent bc89e69209
commit 4ef3ca206d
8 changed files with 39 additions and 26 deletions
@@ -26,7 +26,7 @@ class NotificationMoreDialog extends StatelessWidget {
return Dialog(
backgroundColor: AppColors.backgroundColor,
insetPadding: EdgeInsets.symmetric(horizontal: 24.0.w()),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(4)),
child: Container(
width:
Size(SizeConfig.screenWidth, SizeConfig.screenHeight).displaySize ==
@@ -38,6 +38,11 @@ class NotificationMoreDialog extends StatelessWidget {
DisplaySize.large
? 720
: double.infinity,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(4),
color: AppColors.primary10Light,
border: Border.all(color: AppColors.primary20),
),
// margin: EdgeInsets.symmetric(horizontal: 24.0.w()),
padding: EdgeInsets.symmetric(horizontal: 16.0.w(), vertical: 16.0.h()),
child: Column(