TF-2893 Apply the standard app grid icon

This commit is contained in:
dab246
2024-07-23 13:35:02 +07:00
committed by Dat H. Pham
parent 47b006f685
commit 8b7ac1f039
27 changed files with 173 additions and 77 deletions
@@ -5,7 +5,7 @@ import 'package:flutter/material.dart';
class EmailSubjectStyles {
static const double textSize = 20;
static const int? maxLines = PlatformInfo.isWeb ? 2 : null;
static int? maxLines = PlatformInfo.isWeb ? 2 : null;
static const Color textColor = AppColor.colorNameEmail;
static const Color cursorColor = AppColor.colorTextButton;
@@ -8,7 +8,7 @@ class EmailViewAppBarWidgetStyles {
static const double bottomBorderWidth = 0.5;
static const double height = 52;
static const double radius = 20;
static const double buttonIconSize = IconUtils.defaultIconSize;
static double buttonIconSize = IconUtils.defaultIconSize;
static const double deleteButtonIconSize = 20;
static const double space = 5;
static double? heightIOS(BuildContext context, ResponsiveUtils responsiveUtils) {
@@ -5,7 +5,7 @@ import 'package:flutter/material.dart';
class EmailViewStyles {
static const double mobileContentHorizontalMargin = 16;
static const double mobileContentVerticalMargin = 12;
static const double pageViewIconSize = IconUtils.defaultIconSize;
static double pageViewIconSize = IconUtils.defaultIconSize;
static const EdgeInsetsGeometry pageViewButtonPadding = EdgeInsets.all(5);
}