Answers for "detect text field change swiftUI"

-1

detect textfield change swiftui

import Combine
import SwiftUI

struct ContentView: View {
    @State var location: String = ""

    var body: some View {
        TextField("Search Location", text: $location)
            .onReceive(Just(location)) { location in
                // print(location)
            }
    }
}
Posted by: Guest on January-20-2021

Code answers related to "detect text field change swiftUI"

Code answers related to "Swift"

Browse Popular Code Answers by Language