Releases: hoc081098/stream_loader
Releases · hoc081098/stream_loader
1.5.0 - Aug 1, 2022
https://pub.dev/packages/stream_loader/versions/1.5.0
-
Update dependencies
rxdart_ext: ^0.2.5
(~rxdart: ^0.27.5
).disposebag: ^1.5.1
.
-
Update
Flutter
constraint to'>=3.0.0'
. -
Update
Dart SDK
constraint to'>=2.17.0 <3.0.0'
.
1.4.0 - Sep 15, 2021
https://pub.dev/packages/stream_loader/versions/1.4.0
- Remove
distinct_value_connectable_stream
dependency. - Update dependencies
rxdart_ext
to0.1.2
rxdart
to0.27.2
meta
to1.7.0
- Migrated from
pedantic
toflutter_lints
.
1.3.0 - Jun 21, 2021
https://pub.dev/packages/stream_loader/versions/1.3.0
- Rename
FlatMapPolicy
toFlattenStrategy
. - Fix
LoaderBloc.refresh()
does not complete.
1.2.1 - Jun 17, 2021
https://pub.dev/packages/stream_loader/versions/1.2.1
- Change
dispose
from a field to a function. - Add
FlatMapPolicy
allow changing flatMap behavior ofloaderFunction
andrefresherFunction
.LoaderBloc( ..., loaderFlatMapPolicy: FlatMapPolicy.concat, // asyncExpand refreshFlatMapPolicy: FlatMapPolicy.latest, // switchMap );
1.2.0 - May 10, 2021
https://pub.dev/packages/stream_loader/versions/1.2.0
- Update
rxdart
to0.27.0
.
1.1.0 - Mar 27, 2021
- Stable release for null safety.
1.1.0-nullsafety.2 - Feb 18, 2021
- Latest dependencies.
1.1.0-nullsafety.1 - Jan 23, 2021
- Breaking: changed signature of
LoaderMessageHandler
tovoid Function(BuildContext, LoaderMessage, LoaderBloc)
.
This allows usingBuildContext
to access ancestor widget, eg.ScaffoldMessenger.of(context)
,Navigator.of(context)
, ...
1.1.0-nullsafety.0 - Jan 18, 2021
- Migrate this package to null safety.
- Sdk constraints:
>=2.12.0-0 <3.0.0
based on beta release guidelines. LoaderMessage.fold
requires all arguments are not null.- Dependencies:
- Depends on rxdart_ext.
- Removed built_value.
1.1.0-beta02 - Dec 17, 2020
1.1.0-beta02 - Dec 17, 2020
- Update dependencies to latest version.
- Breaking change: changed
LoaderBloc({ bool enableLogger })
toLoaderBloc({ void Function(String) logger })
.