fix(mobile): sync icon rotation direction (#20088)

spin the sync icon the right direction
pull/20090/head
Brandon Wees 2025-07-22 15:01:18 -05:00 committed by GitHub
parent b3061f1e4f
commit 277e39ac98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -364,7 +364,10 @@ class _SyncStatusIndicatorState extends ConsumerState<_SyncStatusIndicator>
child: Opacity(
opacity: isSyncing ? 1.0 : _dismissalAnimation.value,
child: Transform.rotate(
angle: _rotationAnimation.value * 2 * 3.14159,
angle: _rotationAnimation.value *
2 *
3.14159 *
-1, // Rotate counter-clockwise
child: Icon(
Icons.sync,
size: 24,