Files
WerkoutIOS/iphone/Werkout_ios/subview/RateWorkoutView.swift
2025-04-23 11:48:17 -05:00

37 lines
710 B
Swift

//
// RateWorkoutView.swift
// Werkout_ios
//
// Created by Trey Tartt on 6/18/24.
//
import SwiftUI
struct RateWorkoutView: View {
@Binding var difficulty: Float
var body: some View {
VStack {
Divider()
HStack {
Text("No Rate")
.foregroundColor(.black)
Text("Easy")
.foregroundColor(.green)
Spacer()
Text("Death")
.foregroundColor(.red)
}
ZStack {
Slider(value: $difficulty, in: 0...5, step: 1)
}
}
}
}
//#Preview {
// RateWorkoutView()
//}