Posts

Post not yet marked as solved
1 Replies
1.6k Views
Hello,I am trying to develop a counter on MacOS in SwiftUI.import SwiftUI struct Counter: View { @State var GR: Int = 0 @State var GB: Int = 0 var body: some View { VStack{ HStack { Text("GR") Button(action: {self.GR += 1}) { Text("Add 1") } Text("\(GR)") } HStack { Text("GB") Button(action: {self.GB += 1}) { Text("Add 1") } Text("\(GB)") } } } }I would like to activate the action of adding +1 by pressing a key on the keyboard.For example GR+1 by pressing "w" and GB+1 by pressing "x" on the keyboard.Is there a way to do this?Thank you for your helpSimon
Posted Last updated
.
Post marked as solved
8 Replies
274 Views
Hello,It's probably a silly question, but I'm a beginner.I am using SwiftUI to create a MacOS application. How can I do to add two following variables:@State var PNN: Int = 0 @State var PNE: Int = 0I want to create the variable:@State var Total = PNN + PNEBut it doesn't work...Thanks for your help!
Posted Last updated
.