31 lines
400 B
Swift
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()
|
|
}
|