SwiftPamphletApp icon indicating copy to clipboard operation
SwiftPamphletApp copied to clipboard

Slider

Open ming1016 opened this issue 3 years ago • 0 comments

struct PlaySliderView: View {
    @State var count: Double = 0
    var body: some View {
        Slider(value: $count, in: 0...100)
            .padding()
        Text("\(Int(count))")
    }
}

ming1016 avatar Mar 02 '22 07:03 ming1016