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:
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user