TF-3586: Upgrade Flutter to 3.27.4
This commit is contained in:
+1
-1
@@ -119,7 +119,7 @@ class _DesktopListEmailActionHoverWidgetState
|
||||
padding: _getPaddingIcon(),
|
||||
margin: _getMarginIcon(),
|
||||
backgroundColor: _popupMenuVisible
|
||||
? Theme.of(context).colorScheme.outline.withOpacity(0.08)
|
||||
? Theme.of(context).colorScheme.outline.withValues(alpha: 0.08)
|
||||
: Colors.transparent,
|
||||
tooltipMessage: AppLocalizations.of(context).more,
|
||||
onTapActionAtPositionCallback: (position) {
|
||||
|
||||
@@ -67,7 +67,7 @@ class _EmailTileBuilderState extends State<EmailTileBuilder> with BaseEmailItem
|
||||
EmailActionType.selection,
|
||||
widget.presentationEmail
|
||||
),
|
||||
hoverColor: Theme.of(context).colorScheme.outline.withOpacity(0.08),
|
||||
hoverColor: Theme.of(context).colorScheme.outline.withValues(alpha: 0.08),
|
||||
child: Container(
|
||||
padding: widget.padding ?? _getPaddingItem(context),
|
||||
decoration: _getDecorationItem(),
|
||||
@@ -203,7 +203,7 @@ class _EmailTileBuilderState extends State<EmailTileBuilder> with BaseEmailItem
|
||||
widget.presentationEmail
|
||||
),
|
||||
onHover: (value) => _hoverNotifier.value = value,
|
||||
hoverColor: Theme.of(context).colorScheme.outline.withOpacity(0.08),
|
||||
hoverColor: Theme.of(context).colorScheme.outline.withValues(alpha: 0.08),
|
||||
borderRadius: const BorderRadius.all(Radius.circular(14)),
|
||||
child: Container(
|
||||
padding: widget.padding ?? _getPaddingItem(context),
|
||||
|
||||
@@ -56,7 +56,7 @@ class EmptyEmailsWidget extends StatelessWidget {
|
||||
letterSpacing: -0.15,
|
||||
fontSize: 16,
|
||||
height: 21.01 / 16,
|
||||
color: AppColor.gray424244.withOpacity(0.64),
|
||||
color: AppColor.gray424244.withValues(alpha: 0.64),
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
|
||||
@@ -66,7 +66,7 @@ class _WebTabletBodyEmailItemWidgetState
|
||||
EmailActionType.preview,
|
||||
widget.presentationEmail,
|
||||
),
|
||||
hoverColor: Theme.of(context).colorScheme.outline.withOpacity(0.08),
|
||||
hoverColor: Theme.of(context).colorScheme.outline.withValues(alpha: 0.08),
|
||||
onHover: (value) {
|
||||
setState(() {
|
||||
_isHover = value;
|
||||
@@ -262,7 +262,7 @@ class _WebTabletBodyEmailItemWidgetState
|
||||
? Theme.of(context)
|
||||
.colorScheme
|
||||
.outline
|
||||
.withOpacity(0.08)
|
||||
.withValues(alpha: 0.08)
|
||||
: Colors.transparent,
|
||||
tooltipMessage: AppLocalizations.of(context).more,
|
||||
onTapActionAtPositionCallback: (position) {
|
||||
|
||||
Reference in New Issue
Block a user