Skip to content

Releases: felangel/bloc

bloc-v0.4.1

09 Feb 05:42
Compare
Choose a tag to compare

Minor Updates to Documentation.

bloc-v0.4.0

09 Feb 05:42
Compare
Choose a tag to compare

Added BlocProvider.

  • BlocProvider.of(context)
  • Updates to Documentation.
  • Updates to Example.

bloc-v0.3.0

09 Feb 05:42
90c52c5
Compare
Choose a tag to compare

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

09 Feb 05:42
Compare
Choose a tag to compare

Added Support for Stream Transformation

  • Includes Stream<E> transform(Stream<E> events)
  • Updates to Documentation

bloc-v0.1.0

09 Feb 05:41
Compare
Choose a tag to compare

Initial Version of the library.

  • Includes the ability to create a custom Bloc by extending Bloc class.
  • Includes the ability to connect presentation layer to Bloc by using the BlocBuilder Widget.