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)
            }
    }
}
