Intermediate
Flutter
Q46 / 100
What does StreamBuilder do in Flutter?
Correct! Well done.
Incorrect.
The correct answer is B) A widget that rebuilds itself in response to new events emitted by a Stream
B
Correct Answer
A widget that rebuilds itself in response to new events emitted by a Stream
Explanation
StreamBuilder listens to a Stream and rebuilds its subtree whenever a new event is emitted. Useful for real-time data like Firestore updates, BLoC state streams, and WebSocket messages.
Progress
46/100