flutter_bloc 0.17.0 flutter_bloc: ^0.17.0 copied to clipboard
Flutter Widgets that make it easy to implement the BLoC (Business Logic Component) design pattern. Built to be used with the bloc state management package.
0.17.0 #
Update BlocProvider
to automatically dispose
the provided bloc (#349) and Documentation Updates.
0.16.0 #
0.15.0 #
Added optional condition
to BlocBuilder
to control widget rebuilds (#315) and Documentation Updates
0.14.0 #
Updated to bloc: ^0.14.0
and Documentation Updates
0.13.0 #
Updated to bloc: ^0.13.0
and Documentation Updates
0.12.0 #
Added BlocListenerTree
and Documentation Updates
0.11.1 #
Broaden Dart version range and Minor Documentation Updates
0.11.0 #
Updated to bloc: ^0.12.0
and Documentation Updates
0.10.1 #
Invoke BlocWidgetListener
on initial state and Documentation Updates
0.10.0 #
Added BlocListener
and Documentation Updates
0.9.1 #
Minor Updates to Documentation.
0.9.0 #
Updated to bloc: ^0.11.0
and Documentation Updates
0.8.0 #
Updated to bloc: ^0.10.0
and Documentation Updates
0.7.1 #
Minor Updates to Documentation.
0.7.0 #
Added BlocProviderTree
and Documentation Updates
0.6.3 #
Updated to bloc:^0.9.3
and Minor Updates to Documentation
0.6.2 #
Additional Minor Updates to Documentation
0.6.1 #
Minor Updates to Documentation
0.6.0 #
Updated to bloc: ^0.9.0
0.5.4 #
Additional Minor Updates to Documentation
0.5.3 #
Additional Minor Updates to Documentation
0.5.2 #
Minor Updates to Documentation
0.5.1 #
BlocProvider
performance improvements
0.5.0 #
Updated to bloc: ^0.8.0
0.4.12 #
Additional Minor Updates to Documentation
0.4.11 #
Additional Minor Updates to Documentation
0.4.10 #
Additional BlocBuilder
enhancements
BlocBuilder
no longer filters out States giving developers full control
Minor Updates to Documentation and Examples
0.4.9 #
Additional BlocBuilder
enhancements
BlocBuilder
no longer has a dependency onRxDart
- Using
bloc: ">=0.7.5 <0.8.0"
0.4.8 #
Additional BlocProvider
performance improvements
0.4.7 #
Minor Updates to Documentation and Examples
0.4.6 #
Bug Fixes
- Fixed bug where
BlocBuilder
would return initial state instead of the latest state
0.4.5 #
Additional Minor Updates to Documentation
0.4.4 #
Minor updates to documentation and improved error reporting in BlocProvider
0.4.3 #
BlocBuilder
performance improvements
0.4.2 #
BlocProvider
performance improvements
0.4.1 #
Minor Updates to Documentation
0.4.0 #
Updated to bloc: ^0.7.0
0.3.1 #
Minor Updates to Documentation
0.3.0 #
Updated to bloc: ^0.6.0
0.2.1 #
Minor Updates to Documentation
0.2.0 #
Updates to BlocBuilder
and BlocProvider
BlocBuilder
does not automatically dispose aBloc
. Developers are now responsible for determining when to callBloc.dispose()
BlocProvider
support forof(context)
with generics- Support for multiple nested
BlocProviders
with different Bloc Types.
- Support for multiple nested
0.1.1 #
Minor Updates to Documentation
0.1.0 #
Initial Version of the library.
- Includes the ability to connect presentation layer to
Bloc
by using theBlocBuilder
Widget. - Includes
BlocProvider
, a DI widget that allows a single instance of a bloc to be provided to multiple widgets within a subtree.