iOS Swift - User Input and Forms
What will be displayed if the following SwiftUI code runs and the user taps the minus button once?
@State private var value = 3
Stepper("Value", value: $value, in: 1...5)
Text("Current: \(value)")
