flutter_bloc_pattern 3.0.0 flutter_bloc_pattern: ^3.0.0 copied to clipboard
Bloc provider. Provides bloc to descendant widget (O(1)), and the bloc is disposed appropriately by state which the bloc_provider holds internally.
3.0.0 - Jun 18, 2024 #
- Update dependencies:
rxdart_ext
to^0.3.0
.
- Change Flutter constraint to
'>=3.10.0'
(requiresFlutter 3.10
or later). - Change Dart SDK constraint to
'>=3.0.0 <4.0.0'
(requiresDart 3.0
or later).
2.3.0 - Jun 3, 2022 #
- Update
rxdart_ext
to0.2.2
.
2.2.0 - Sep 23, 2021 #
- Update dependencies:
rxdart_ext
to0.1.2
.flutter_provider
to2.1.0
.
- Change sdk constraint
>=2.14.0 <3.0.0
and flutter constraint>=2.5.0
. - Migrated from
pedantic
toflutter_lints
. - Added
RxStreamBuilder.checkStateStreamEnabled
allows checking invalid state caused byStateStream
s.// enabled when running in debug or profile mode RxStreamBuilder.checkStateStreamEnabled = !kReleaseMode;
2.1.1 - May 21, 2021 #
- Fix
RxStreamBuilder
: missing passKey? key
to parent constructor.
2.1.0 - May 10, 2021 #
- Update
rxdart
to0.27.0
. RxStreamBuilder
now accepts aValueStream
.
2.0.0 - Mar 3, 2021 #
- Stable release for null safety.
2.0.0-nullsafety.1 - Jan 21, 2021 #
- Makes
RxStreamBuilder
extendsStreamBuilder
.
2.0.0-nullsafety.0 - Jan 20, 2021 #
- Migrate this package to null safety.
- Sdk constraints:
>=2.12.0-0 <3.0.0
based on beta release guidelines. - Depends on flutter_provider package. So bloc will be created lazy i.e. on the first access.
- Added extension
BuildContext.bloc<T>({bool listen = false})
. It is identical withBlocProvider<T>.of(BuildContext, {bool listen = false})
. - Changed signature of
builder
inRxStreamBuilder(builder: )
constructor toWidget Function(BuildContext, T?)
. Previous signature isWidget Function(BuildContext, AsyncSnapshot<T>)
. - Fixed many issues.
- Many improvements.
1.2.0 - Apr 23, 2020 #
- Breaking change: support for
rxdart
0.24.x.
1.1.2 - Feb 07, 2020 #
- Remove
assert(child != null)
and@required child
inBlocProvider
constructor
1.1.1 - Feb 07, 2020 #
- Add
DisposeCallbackBaseBloc
- Add
BlocProviders
1.1.0 - Dec 17, 2019 #
- Update
rxdart
1.0.1 - Aug 10, 2019 #
- Minor updates
1.0.0+1 - Aug 10, 2019 #
- Update README.md
1.0.0 - Aug 10, 2019 #
- Add
RxStreamBuilder
0.0.1+1 - Feb 08, 2019 #
- Add example
0.0.1 - Feb 08, 2019 #
- Initial