Watch
Watch
To watch a signal for changes in Flutter, use the Watch
widget. This will only rebuild this widget method and not the entire widget tree.
This will also automatically unsubscribe when the widget is disposed.
Any inherited widgets referenced to inside the Watch scope will be subscribed to for updates (MediaQuery, Theme, etc.) and retrigger the builder method.
There is also a drop in replacement for builder:
.watch(context)
If you need to map to a widget property use the watch
extension method. This will infer the type and subscribe to the signal.
It is recommended to use Watch
instead of .watch(context)
as it will automatically unsubscribe when the widget is disposed instead of waiting on the garbage collector via WeakReferences.
.listen(context, cb)
Alternatively if need to listen for changes to a signal but not rebuild the widget you can use the listen extension.
This can be used in the build method and will call the callback method in the same way it would rebuild the widget (only when mounted).
Rebuilds
To protect against unnecessary rebuilds, the watch
extension will only subscribe once to the nearest element and mark the widget as dirty.
This means that if you have multiple widgets that are watching the same signal, only the first one will be subscribed to the signal and multiple updates will be batched together.
It is also possible to isolate the rebuilds with the Builder
widget, however it is recommended to use Watch
or SignalWidget
instead.
Selectors
With signals instead of using select
you instead create a new computed
signal that is derived from the original signal.
It is also possible to select from the signal directly: