VesselWheel

단추 늘이기, 줄이기 본문

Xcode Study

단추 늘이기, 줄이기

JasonYang 2023. 10. 18. 15:51

 

 

import SwiftUI

 

struct ContentView: View {

    @State private var count: Float = 0

    @State private var age: Float = 0

    

    var body: some View {

        VStack {

            Form{

                Slider(value: self.$count, in: 1...10){

                    Text("Count")

                }

                Text("Count : \(Int(self.count))")

                

                Slider(value: self.$age, in: 0...100){

                    Text("Age")

                }

                Text("Age : \(Int(self.age))")

                

                

            }

        }

    }

}

 

struct ContentView_Previews: PreviewProvider {

    static var previews: some View {

        ContentView()

    }

}

'Xcode Study' 카테고리의 다른 글

count : index with VStack  (0) 2023.10.18
NavigationView  (0) 2023.10.18
func Count and Age present  (0) 2023.10.18
e-mail / pw 입력창  (1) 2023.10.18
@State  (0) 2023.10.18