I have a simple TextField that binds to the state 'location' like this,
TextField("Search Location", text: $location)
I want to call a function each time this field changes, something like this:
TextField("Search Location", text: $location) {
self.autocomplete(location)
}
However this doesn't work. I know that there are callbacks, onEditingChanged - however this only seems to be triggered when the field is focussed.
How can I get this function to call each time the field is updated?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…