The function callback on onPress prop is not working when I tap on a item result
Search an address and select one item of the result list
Please provide a FULLY REPRODUCIBLE example.
Click to expand!
Search an address and select one item of the result list, the console.log is now printing on the above code
```javascript
console.log(data, details);
}}
query={{
key: MAPS_API_KEY,
language: 'en',
types: 'address',
}}
/>
```
_Please remember to remove you google API key from the code you provide here_
React Native Version: [0.61.4]
[x] iOS
If you are using expo please indicate here:
Add any other context about the problem here, screenshots etc

scrollview wrapping the <GoogleAutocomplete/> component (see this)? Yes! Thank you so much! it works!
i'm facing the same problem, but only happens with IOS. I cant click in none of listview items(except if I click randomly several times over they).I'm not wraping a scrollview btw its inside a safeareaview and I'm using Expo
@itsGabriel can you try using <SafeAreaView /> from [react-native-safe-area-context](https://github.com/th3rdwave/react-native-safe-area-context)?
I've run into the same thing before. If you drop a link to a snack i'll be happy to take a look.
Most helpful comment
scrollviewwrapping the<GoogleAutocomplete/>component (see this)?