// // WorkoutInfoView.swift // Werkout_ios // // Created by Trey Tartt on 6/18/24. // import SwiftUI struct WorkoutInfoView: View { let workout: Workout var body: some View { VStack(alignment: .leading, spacing: WerkoutTheme.sm) { Text(workout.name) .font(WerkoutTheme.sectionTitle) .foregroundStyle(WerkoutTheme.textPrimary) if let desc = workout.description { Text(desc) .font(WerkoutTheme.bodyText) .foregroundStyle(WerkoutTheme.textSecondary) } } .padding() .frame(maxWidth: .infinity, alignment: .leading) } }