flutter_examples_mentalcalc icon indicating copy to clipboard operation
flutter_examples_mentalcalc copied to clipboard

Flutter example projects using BLoC and Scoped Model patterns

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.