Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Am creating an app which will display content based on user location. For this am using the Geoflutterfire package to query the data from firestore. The app returns data as desired when I use a single document field .for example

stream = radius.switchMap((rad) {
      var collectionReference = firestore
          .collection("content")
         .doc("onecontentid")
         .collection("allcontents");
      return geo.collection(collectionRef: collectionReference).within(
          center: center, radius: rad, field: 'position', strictMode: true);
    });

However I need to stream all documents from the "allcontents" sub collection and to achieve this tried using collectionGroup like this

stream = radius.switchMap((rad) {
          var collectionReference = firestore
              
             .collectionGroup("allcontents");
          return geo.collection(collectionRef: collectionReference).within(
              center: center, radius: rad, field: 'position', strictMode: true);
        });

which does not return any data.

My streambuilder for displaying the data looks like this

StreamBuilder(
            stream: stream,
            builder: (BuildContext context,
                AsyncSnapshot<List<DocumentSnapshot>> snapshots) {
              if (snapshots.connectionState == ConnectionState.active &&
                  snapshots.hasData) {
Do stuff}else {
                return Center(child: CircularProgressIndicator());

For the first case(single doc query) it is able to retrieve data(Do stuff) From firestore For the second case(collectionGroup) it only shows the circular progress indicator.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

The GeoFlutterFire's collectionRef takes Query type as input, so your code looks good and should work. While handling the streambuilder result you have to check for error

if (snapshots.connectionState == ConnectionState.error) { // Error state }

and update the result in screen. Now, for any state other than success its coded to show the progress indicator.

Update for Permission-denied Error:

This may because of the firestore security rules. I recommend this Firestore Security Rule reference, so that you can write more secure rules that match your application needs.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...