From 71b6915bbcd15f2239c016110b4d3b0067ceb161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20Moli=C5=84ski?= <47773413+damian-molinski@users.noreply.github.com> Date: Thu, 14 Nov 2024 16:04:04 +0100 Subject: [PATCH] fix: expand arrow rotation (#1220) --- .../apps/voices/lib/widgets/common/animated_expand_chevron.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst_voices/apps/voices/lib/widgets/common/animated_expand_chevron.dart b/catalyst_voices/apps/voices/lib/widgets/common/animated_expand_chevron.dart index bfafb738a79..13d56f3b923 100644 --- a/catalyst_voices/apps/voices/lib/widgets/common/animated_expand_chevron.dart +++ b/catalyst_voices/apps/voices/lib/widgets/common/animated_expand_chevron.dart @@ -12,7 +12,7 @@ class AnimatedExpandChevron extends StatelessWidget { @override Widget build(BuildContext context) { return AnimatedRotation( - turns: isExpanded ? 0 : 0.25, + turns: isExpanded ? 0.25 : 0, duration: const Duration(milliseconds: 250), child: VoicesAssets.icons.chevronRight.buildIcon(), );