We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
I would like to have a callback when users click on the X inside text box
Describe the solution you'd like
A callback to be executed when the X in the autocomplete is clicked.
Describe alternatives you've considered
Right now I've used useEffect + text input props. Whenever the value of text input props is "" I execute a function.
Additional context None
The text was updated successfully, but these errors were encountered:
@robertoyoc You can use the textInputProps prop to do that. Here's how:
textInputProps
<GooglePlacesAutocomplete textInputProps={{ onChangeText: text => { if (!text) { setLocation(undefined); } }, }} />
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
I would like to have a callback when users click on the X inside text box
Describe the solution you'd like
A callback to be executed when the X in the autocomplete is clicked.
Describe alternatives you've considered
Right now I've used useEffect + text input props.
Whenever the value of text input props is "" I execute a function.
Additional context
None
The text was updated successfully, but these errors were encountered: