You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to add those Streams at runtime to a List which holds those Object and use CombineLatestStream.list, Streambuilder wont emit new values, only those who have been assigned at Start.
_listofstreams!.add(feedstream());
returnStreamBuilder<List<List<Post>>>(
stream:CombineLatestStream.list(_listofstreams!),
builder: (context, posts) {
if (!posts.hasData) {
returnContainer();
}
if (posts.connectionState ==ConnectionState.waiting) {
returnContainer();
}
If you instead use multiple Streams which have not been combined with Rx.combineLatest2, Streambuilder will emit all values.
The text was updated successfully, but these errors were encountered:
Hello,
not sure if this is a bug or intendend behaviour.
You have multiple instances of a Stream combined with Rx.combineLatest2 like below
If you want to add those Streams at runtime to a List which holds those Object and use CombineLatestStream.list, Streambuilder wont emit new values, only those who have been assigned at Start.
If you instead use multiple Streams which have not been combined with
Rx.combineLatest2
, Streambuilder will emit all values.The text was updated successfully, but these errors were encountered: