value_listenable_extensions 1.2.1 value_listenable_extensions: ^1.2.1 copied to clipboard
Useful tools for working with `ValueListenable`s.
1.2.1 #
- Add
DisposableValueListenable.transform
to fully consume and map one value listenable into another- When the new one is disposed, the underlying source will be disposed with it
- Allow specifying custom
dispose
callback forcombineLatest*
functions - Use
DisposableValueListenable
from shared packagedisposable_value_listenable
1.2.0 #
- Add
StaticValueListenable
for when one wants to use a static value withcombineLatest
or in aCombinedValueListenable
- This enables the mapper function to stay clean and not having to use anything besides their given arguments
1.1.1 #
- Expose
CombinedValueListenable
1.1.0 #
- Add
CombinedValueListenable
to build classes based on thecombineLatest*
logic
1.0.1 #
- Add examples to the README
1.0.0 #
- Add
connect
,listen
, andmap
extensions forValueListenable
- Add
combineLatest*
helpers to create a newValueListenable
from a number of inputs