RivaanRanawat / instagram-flutter-clone

Responsive Instagram Clone developed with Flutter & Firebase
https://youtu.be/BBccK1zTgxw
858 stars 474 forks source link

Posts - Don't have the good lenght in SearchScreern #8

Closed Ktharsix closed 2 years ago

Ktharsix commented 2 years ago

When I go to an other profil, the number of the posts keep the value of the current user connected. And the other data like Followers and Following is working.

====> Resolve :

Change your variable "postSnap" by :

var postSnap = await FirebaseFirestore.instance
          .collection('posts')
          .where('uid', isEqualTo: widget.uid)
          .get();