1
0
mirror of https://github.com/flutter/samples.git synced 2026-04-04 18:51:05 +00:00

Flutter3.27 (#2483)

Updating samples for the next stable release
This commit is contained in:
Eric Windmill
2024-12-11 14:34:29 -05:00
committed by GitHub
parent 1ccce7c9e1
commit f25adf4529
8 changed files with 29 additions and 24 deletions

View File

@@ -83,7 +83,7 @@ class _Card extends StatelessWidget {
CachedNetworkImage(
imageUrl: imageUrl,
fit: BoxFit.cover,
color: showTitle ? Colors.black.withOpacity(0.5) : null,
color: showTitle ? Colors.black.withValues(alpha: 0.5) : null,
colorBlendMode: showTitle ? BlendMode.darken : null,
errorListener: imageErrorListener,
),