python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can I get the value of a selected answer and match it with the right answer from the backend in flutter Streambuilder?
I am trying to building a marker for a cbt app in flutter. a bit new to this.
I've gotten the questions and the answers from the backend into a stream. I'm trying to identify each value to be able to ...
flochristos
Votes: 0
Answers: 1
Flutter SteamBuilder throwing error on first argument context
I have a problem here with flutter (v2.8.1) on my windows.
I am trying to use StreamBuilder class to fetch data from firebase but it is not working anyhow. I tried to use BuildContext context but it i...

Syed Bilal
Votes: 0
Answers: 1
Why does `const` modifier avoid StreamBuilder rebuild in Flutter?
In my app's homepage I call a ScoreListPageBody that is rebuild when I change the Locale from another page (SettingsPage).
To force rebuild it, it contains a StreamBuilder that is triggered when the L...

Galactose
Votes: 0
Answers: 1
Problem reading last entry in Firestore - Class '_JsonQuerySnapshot' has no instance method '[]'
I am trying to read last entry from Firebase Friestore like this:
This is my stream:
final getLastEmotion = _emotionsDbReference
.orderBy('timeStamp', descending: true)
.limit(1)
.snapshot...
AturicLiqr
Votes: 0
Answers: 2