Releases: felangel/bloc
Releases · felangel/bloc
flutter_bloc-v0.2.1
Minor Updates to Documentation
bloc-v0.5.2
Additional minor Updates to Documentation.
flutter_bloc-v0.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
flutter_bloc-v0.1.1
Minor Updates to Documentation
flutter_bloc-v0.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.
bloc-v0.5.1
Minor Updates to Documentation
bloc-v0.4.1
Minor Updates to Documentation.
bloc-v0.4.0
Added BlocProvider
.
BlocProvider.of(context)
- Updates to Documentation.
- Updates to Example.
bloc-v0.3.0
Updated mapEventToState
to take current state as an argument.
Stream<S> mapEventToState(E event)
->Stream<S> mapEventToState(S state, E event)
- Updates to Documentation.
- Updates to Example.
bloc-v0.2.0
Added Support for Stream Transformation
- Includes
Stream<E> transform(Stream<E> events)
- Updates to Documentation