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
is there a way to wathch multiple observables in reaction similar to combineLatest? I see in your documentation
reaction
ReactionDisposer reaction<T>(T Function(Reaction) fn, void Function(T) effect)
**Monitors the observables** used inside the fn() tracking function and runs the effect() when the tracking function returns a different value. Only the observables inside fn() are tracked.
but i do not see any example how to add multiple observables into function.
I need it because i have to trigger changes on initial items load and after on subject change.
The text was updated successfully, but these errors were encountered:
Hello,
is there a way to wathch multiple observables in reaction similar to combineLatest? I see in your documentation
but i do not see any example how to add multiple observables into function.
I need it because i have to trigger changes on initial items load and after on subject change.
The text was updated successfully, but these errors were encountered: