Releases: lukehutch/flutter_reactive_value
Releases · lukehutch/flutter_reactive_value
v2.0.1
Optimistically remove listeners when the Element
they are listening to is garbage collected, using a Finalizer
, reducing memory pressure. (#5)
v2.0.0
Fix memory leak (listeners were being added with every build). This required converting ReactiveValueNotifier
from an extension to a subclass, because it needed an extra private field. (#5)
v1.0.4
Fix minimum Dart and Flutter version (#2).
v1.0.2
Check if mounted
before calling markNeedsBuild()
.
v1.0.1
Added the notifyChanged()
method.