Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.14 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.14 KB

Flutter example projects using BLoC and Scoped Model patterns

This repository contains examples used in my articles below:

Examples

  • bloc

    • An example of the BLoC pattern.
  • bloc2

    • Removed.
  • bloc3

    • An example of the BLoC pattern powered by the provider package.
  • bloc4

    • An example of the BLoC pattern with less complicated BLoC powered by the provider package.
  • bloc5

    • A more practical example of the BLoC pattern with multiple blocs and the business logic separated from the blocs.
  • scoped

    • An example of the Scoped Model pattern powered by the scoped_model package.
  • scoped2

    • An example of the Scoped Model pattern powered by the provider package.
  • bloc6 (cubit)

    • A cubit version of bloc5.