Skip to content

Commit

Permalink
fix: incorrect arrow direction
Browse files Browse the repository at this point in the history
  • Loading branch information
akexorcist committed Sep 8, 2024
1 parent 506d573 commit 301b124
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ private fun PermissionItem(

val arrowRotation by animateFloatAsState(
targetValue = when (isExpanded) {
true -> 180f
false -> 0f
true -> 0f
false -> 180f
},
label = "arrow_rotation",
)
Expand Down

0 comments on commit 301b124

Please sign in to comment.