Ios swift – How to exclude TextField tap while hiding keyboard
Currently, I am hiding the keyboard when the user taps anywhere. I want to exclude 2 TextFields tap to avoid the keyboard hide/show effect. import SwiftUI struct ContentView: View { @FocusState var focus:FocusedField? @State var name = "" @State var…