For some reason, I cannot upload an image or link to Imgur.
struct StartView: View {
var workoutTypes: [HKWorkoutActivityType] = [.cycling, .running, .walking, .other]
var body: some View {
List(workoutTypes){ workoutType in
NavigationLink(
workoutType.name,
destination: Text(workoutType.name)
)
.padding(EdgeInsets(top: 15, leading: 5, bottom: 15, trailing: 5))
}
.listStyle(.carousel)
.navigationBarTitle("Workouts")
}
}