Files
workoutsplus/TODO/WorkoutPlusWatch/Views/ControlsView.swift
2026-03-01 10:56:42 +01:00

31 lines
400 B
Swift

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()
}