All Questions
Tagged with flutter-streambuilder provider
3 questions
-1
votes
1
answer
464
views
Which State Management approach is more preferable to update the data in real time? [closed]
We are working on Parking Management Application for our university where we are receiving the vehicle information. And if the entered vehicle is not registered, security guard have an option to ...
0
votes
1
answer
1k
views
Flutter stream: Stream builder returns Null value
I'm trying to get data from Firestore via a stream, but it's returning null.
This is the code of my model.
class UserData {
String? uid;
String? name;
String? sugar;
int? strength;
UserData(...
1
vote
0
answers
174
views
StreamProvider not updating
ı am working on chat page like conversation. And ı can fetch data with stream from firebase.When ı open page first time all data come but if new data added to the firebase, my ui not updating. And ...