TF-3586: Upgrade Flutter to 3.27.4

This commit is contained in:
DatDang
2025-03-25 15:53:01 +07:00
committed by Dat H. Pham
parent c7f5dc9e5e
commit 4fd0931c9e
109 changed files with 361 additions and 372 deletions
@@ -6,7 +6,7 @@ class AppGridDashboardStyle {
static const EdgeInsetsGeometry padding = EdgeInsetsDirectional.symmetric(horizontal: 10, vertical: 14);
static final List<BoxShadow> cardShadow = [
BoxShadow(
color: Colors.black.withOpacity(0.15),
color: Colors.black.withValues(alpha: 0.15),
blurRadius: 20,
offset: Offset.zero
),
@@ -7,7 +7,7 @@ class AutocompleteTagItemStyle {
static const double space = 4;
static const double deleteIconSize = 24;
static Color get backgroundColor => AppColor.colorBackgroundTagFilter.withOpacity(0.08);
static Color get backgroundColor => AppColor.colorBackgroundTagFilter.withValues(alpha: 0.08);
static const EdgeInsetsGeometry margin = EdgeInsetsDirectional.only(end: 8);
static const EdgeInsetsGeometry padding = EdgeInsetsDirectional.only(start: 8, end: 4, top: 4, bottom: 4);