From 13eec8392d7057746b7acfbd6dbcdb0f95f87c32 Mon Sep 17 00:00:00 2001 From: Shawn Date: Wed, 7 Sep 2022 13:52:53 -0600 Subject: [PATCH] Restore shimmer effect --- lib/ui/common/collectible_item.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/ui/common/collectible_item.dart b/lib/ui/common/collectible_item.dart index 25f45bbf..5fa39dc0 100644 --- a/lib/ui/common/collectible_item.dart +++ b/lib/ui/common/collectible_item.dart @@ -52,13 +52,12 @@ class CollectibleItem extends StatelessWidget with GetItMixin { ), ) .animate(onPlay: (controller) => controller.repeat()) - // TODO SB (Aug 17, 2022): Temporarily removed on Jonahs request, due to a bug in Impeller which should be fixed soon. Re-enable when fixed. - //.shimmer(delay: 4000.ms, duration: $styles.times.med * 3) - .shake(delay: 4000.ms, duration: $styles.times.med * 3, curve: Curves.easeInOutCubic, hz: 4) + .shimmer(delay: 4000.ms, duration: $styles.times.med * 3) + .shake(curve: Curves.easeInOutCubic, hz: 4) .scale(begin: 1.0, end: 1.1, duration: $styles.times.med) .then(delay: $styles.times.med) .scale(begin: 1.0, end: 1 / 1.1), - ), + ), ), ), );