He estado atrapado en este problema por tanto tiempo. Acabo de comenzar a implementar Firestore en mi aplicación react-native con react-native-firebase. Solo estoy siguiendo los documentos [ https://invertase.io/oss/react-native-firebase/v6/firestore/quick-start#reading-data] pero no me funciona.
Esto está en Android. Todavía no lo he probado en iOS.
Sigo recibiendo este error:
[TypeError: undefined is not a function (near '...this._firestore.native.collectionGet...')]
Aquí está el código relevante:
import React, {Component} from 'react';
import { firebase } from '@react-native-firebase/firestore';
export default App extends Component{
constructor(props) {
super(props);
this.getData= this.getData.bind(this)
this.getData()
this.state = {};
}
async getData() {
try {
const querySnapshot = await firebase.firestore()
.collection('Gyms')
.get() //error with this
console.log('Documents', querySnapshot.docs);
} catch (e) {
console.log(e);
}
}
}
Cualquier ayuda sería muy apreciada!