Tag: PropertyWrapper
struct StateSample: View { private var counter = 0 var body: some View { Button(action: { self.counter += 1 }, label: { Text("counter is \(counter)") }) } }