Skip to content
New issue

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

onCleared: Callback after clearing autocomplete #928

Open
robertoyoc opened this issue Jan 11, 2024 · 1 comment
Open

onCleared: Callback after clearing autocomplete #928

robertoyoc opened this issue Jan 11, 2024 · 1 comment

Comments

@robertoyoc
Copy link

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

@daskalovbiz
Copy link

daskalovbiz commented Sep 24, 2024

@robertoyoc
You can use the textInputProps prop to do that. Here's how:

<GooglePlacesAutocomplete
        textInputProps={{
          onChangeText: text => {
            if (!text) {
              setLocation(undefined);
            }
          },
        }}
/>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants