Skip to content

Commit

Permalink
fix: expand arrow rotation (#1220)
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-molinski authored Nov 14, 2024
1 parent e91135f commit 71b6915
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
);
Expand Down

0 comments on commit 71b6915

Please sign in to comment.