From 9a8b2dc8d94a83640d210fde12604b6754e54d95 Mon Sep 17 00:00:00 2001 From: Grant Skinner Date: Fri, 16 Sep 2022 14:56:11 -0600 Subject: [PATCH] improve collection tile icons --- .../screens/collection/widgets/_collection_tile.dart | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/lib/ui/screens/collection/widgets/_collection_tile.dart b/lib/ui/screens/collection/widgets/_collection_tile.dart index e55afa19..498a79ef 100644 --- a/lib/ui/screens/collection/widgets/_collection_tile.dart +++ b/lib/ui/screens/collection/widgets/_collection_tile.dart @@ -28,9 +28,14 @@ class _CollectionTile extends StatelessWidget { color: $styles.colors.black, child: Center( child: FractionallySizedBox( - widthFactor: 0.6, - heightFactor: 0.6, - child: Image(image: collectible.icon, color: $styles.colors.greyStrong), + widthFactor: 0.66, + heightFactor: 0.66, + child: Image( + image: collectible.icon, + color: $styles.colors.black, + colorBlendMode: BlendMode.color, + opacity: AlwaysStoppedAnimation(0.2), + ), ), ), );