Shraddha Apshankar
                                            Shraddha Apshankar
                                        
                                    If anyone is still struggling with this, the following example might help. It worked for me ``` import firestore from "@react-native-firebase/firestore"; const snapshot = await firestore() .collection("connections") .where( firestore.Filter.or( firestore.Filter("sender",...
In my case this was because of not setting `keyboardShouldPersistTaps` on **all** ancestors ScrollView or FlatList as mentioned [here](https://github.com/FaridSafi/react-native-google-places-autocomplete#use-inside-a-scrollview-or-flatlist). I had set it on the immediate ancestor ScrollView but not...