Ios swift – Capture @State in closure
I have a simple register form, when user press Continue Button, I will show a popover if they not type in any fields. struct ContentView: View { @State var firstName = "" @State var lastName = "" @State private var…