Files
workouts/Workouts Watch App/__ATTIC__/ExerciseDetailView.swift
2025-07-25 17:42:25 -04:00

46 lines
1.2 KiB
Swift
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

////
//// ExerciseDetailView.swift
//// Workouts
////
//// Created by rzen on 7/23/25 at 9:17AM.
////
//// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
////
//
//import SwiftUI
//
//struct ExerciseDetailView: View {
// let log: WorkoutLog
// let onStart: () -> Void
//
// var body: some View {
// VStack(alignment: .center, spacing: 16) {
// Text(log.exerciseName)
// .font(.title)
// .lineLimit(1)
// .minimumScaleFactor(0.5)
// .layoutPriority(1)
//
// HStack(alignment: .bottom) {
// Text("\(log.weight)")
// Text("lbs")
// .fontWeight(.light)
// .padding([.trailing], 10)
//
// Text("\(log.sets)")
// Text("×")
// .fontWeight(.light)
// Text("\(log.reps)")
// }
// .font(.title3)
// .lineLimit(1)
// .minimumScaleFactor(0.5)
// .layoutPriority(1)
//
// Text(log.status?.name ?? "Not Started")
// .foregroundStyle(Color.accentColor)
// }
// .padding()
// }
//}