add watchOS code from Workout+ to TODO for future reference

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 10:56:42 +01:00
parent 1c177c5336
commit 0f2314945e
9 changed files with 233 additions and 0 deletions
@@ -0,0 +1,30 @@
import SwiftUI
struct ControlsView: View {
var body: some View {
HStack {
VStack {
Button {
} label: {
Image(systemName: "xmark")
}
.tint(Color.red)
.font(.title2)
Text("End")
}
VStack {
Button {
} label: {
Image(systemName: "pause")
}
.tint(Color.yellow)
.font(.title2)
Text("Pause")
}
}
}
}
#Preview {
ControlsView()
}