TF-2972 Turn color of Clean button into primary to have consistent color in app

This commit is contained in:
dab246
2024-07-17 14:00:59 +07:00
committed by Dat H. Pham
parent 287b6b74b0
commit 2a22cb1174
3 changed files with 5 additions and 6 deletions
@@ -19,7 +19,7 @@ class EmptyMailboxDialogOverlayStyles {
static const Color backgroundColor = Colors.white;
static const Color closeButtonColor = AppColor.colorClosePopupDialogButton;
static const Color cancelButtonColor = AppColor.colorCancelPopupDialogButton;
static const Color emptyButtonColor = AppColor.colorEmptyPopupDialogButton;
static const Color emptyButtonColor = AppColor.primaryColor;
static const Color emptyButtonBackground = Colors.transparent;
static Color get shadowColor => Colors.grey.shade500;
@@ -38,9 +38,9 @@ class EmptyMailboxDialogOverlayStyles {
fontWeight: FontWeight.w400,
color: Colors.black
);
static const TextStyle emptyButtonTextStyle = TextStyle(
static const TextStyle cleanButtonTextStyle = TextStyle(
fontWeight: FontWeight.w400,
fontSize: 15,
color: AppColor.colorTextBody
fontSize: 13,
color: Colors.white
);
}