This commit is contained in:
Trey t
2023-06-20 23:40:49 -05:00
parent 69c33f3c34
commit 025810f699
3 changed files with 42 additions and 28 deletions

View File

@@ -22,6 +22,12 @@ struct WorkoutDetailView: View {
TopButtonsView(workout: workout)
.frame(height: 88)
Text(workout.name)
.font(.title3)
if let desc = workout.description {
Text(desc)
.font(.body)
}
CurrentWorkoutElapsedTimeView()
ExerciseListView(workout: workout)
CountdownView()