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
@@ -33,13 +33,13 @@ class EmailAddressBottomSheetBuilder extends StatelessWidget {
),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.15),
color: Colors.black.withValues(alpha: 0.15),
blurRadius: 8,
spreadRadius: 3,
offset: const Offset(0, 4),
),
BoxShadow(
color: Colors.black.withOpacity(0.3),
color: Colors.black.withValues(alpha: 0.3),
blurRadius: 3,
spreadRadius: 0,
offset: const Offset(0, 1),
@@ -40,13 +40,13 @@ class EmailAddressDialogBuilder extends StatelessWidget {
borderRadius: const BorderRadius.all(Radius.circular(16)),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.15),
color: Colors.black.withValues(alpha: 0.15),
blurRadius: 8,
spreadRadius: 3,
offset: const Offset(0, 4),
),
BoxShadow(
color: Colors.black.withOpacity(0.3),
color: Colors.black.withValues(alpha: 0.3),
blurRadius: 3,
spreadRadius: 0,
offset: const Offset(0, 1),
@@ -20,7 +20,7 @@ class TopBarAttachmentViewer extends StatelessWidget {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 16),
height: 52,
color: Colors.black.withOpacity(0.3),
color: Colors.black.withValues(alpha: 0.3),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
@@ -32,8 +32,8 @@ class TopBarAttachmentViewer extends StatelessWidget {
color: Colors.white,
size: 24,
),
focusColor: Colors.black.withOpacity(0.3),
hoverColor: Colors.black.withOpacity(0.3),
focusColor: Colors.black.withValues(alpha: 0.3),
hoverColor: Colors.black.withValues(alpha: 0.3),
tooltip: AppLocalizations.of(context).close,
),
const SizedBox(width: 8),
@@ -59,8 +59,8 @@ class TopBarAttachmentViewer extends StatelessWidget {
color: Colors.white,
size: 24,
),
focusColor: Colors.black.withOpacity(0.3),
hoverColor: Colors.black.withOpacity(0.3),
focusColor: Colors.black.withValues(alpha: 0.3),
hoverColor: Colors.black.withValues(alpha: 0.3),
tooltip: AppLocalizations.of(context).print,
),
),
@@ -75,8 +75,8 @@ class TopBarAttachmentViewer extends StatelessWidget {
color: Colors.white,
size: 24,
),
focusColor: Colors.black.withOpacity(0.3),
hoverColor: Colors.black.withOpacity(0.3),
focusColor: Colors.black.withValues(alpha: 0.3),
hoverColor: Colors.black.withValues(alpha: 0.3),
tooltip: AppLocalizations.of(context).download,
),
)