import SwiftUI
struct FormExample : View {
@State private var age = 0
var body: some View {
NavigationView {
Form {
Stepper("Age:", value: $age, in: 0...100)
HStack {
Text("Your age is ")
.font(.title3)
Text("\(age)")
.font(.title3)
.foregroundColor(.blue)
}
}
.navigationTitle("Age")
}
}
}