flutter_streamer 2.0.0
flutter_streamer: ^2.0.0 copied to clipboard
A pure dart state management class based on standard Dart's Stream.
1.0.0 12-02-2024 #
First release
1.0.1 10-07-2024 #
Updated rxdart dependency Renamed library file: streamer.dart to flutter_streamer.dart
1.1.0 25-09-2024 #
Added the StateStreamer class that add some superpowers to the existing Streamer class It makes state management more easier Check out the new example's logic class
2.0.0 20-10-2024 #
Breaking changes ! Streamer.when method has been renamed to Streamer.where Streamer.select method as been renamed to Streamer.only
Streamer.select is now returning a stream depending on the given "when" mapping method but the triggered value will be the original one and not the mapped one.
Streamer.when is now listening a stream depending on the given "when" mapping method but the triggered value will be the original one and not the mapped one.
Streamer.where belong as the previous Streamer.when method. So it will listen a stream depending on the given "mapper" mapping method and the triggered value will be the mapped one.
Streamer.filter is a mix of Streamer.when and Streamer.where. So it will listen stream depending on the given "when" mapping method but the triggered value will be mapped by the "mapper" mapping method.
All these new methods have a distinct boolean parameter false by default.