struct ContentView: View {
@State private var test: Int = 5
var body: some View {
VStack {
Stepper(value: $test, in: 0...10, step: 1) {
Text("\(test)")
}
}
}
}
In Xcode 14 beta 4 (14A5284g) on macOS 13.0 Beta (22A5311f). Add a basic Stepper to a fresh watchOS project, run it in simulator, tap + once, tap - once, chaos ensues. Appears to be that the Stepper is being tapped many times rapidly.