Flutterando / rx_notifier

Extension to ValueNotifier by transparently applying functional reactive programming (TFRP)

Home Page:https://pub.dev/packages/rx_notifier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: Nested RxBuilders

bobmoff opened this issue · comments

commented

Is it problematic to next RxBuilders in the same Widget tree ?

I get this message: "No Rx variables in that space"

Looks like its when it is trying to untrack, but I am not sure if this break stuff or not.

What happens if I have RxBuilder in the root of the app, how deep will it go to find stuff to track ?

Hello!
Only what is executed in a functional manner within the scope will be tracked.
This has some implications if using conditionals (if and else) can prevent the object from being seen by tracking.

commented

Ok. I tried it some more, and I now understand more how it works. Thanks again!