Skip to content

Commit

Permalink
feat: animate item placement in routine and exercise list screens
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMalch committed Jun 16, 2024
1 parent 5afc5df commit 6f45349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ fun ExerciseList(
}
},
onClick = { onExerciseClick(exercise.id) },
modifier = Modifier.animateItemPlacement(),
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ fun RoutineList(
routine = routine,
onToggleFavorite = { onToggleFavorite(routine) },
onClick = { onRoutineClick(routine) },
modifier = Modifier.animateItemPlacement(),
)
}
}
Expand Down

0 comments on commit 6f45349

Please sign in to comment.