Flutter GBX is a collection of packages to help development of a scalable clean code app in flutter.
gbx_core as the name implies, is the core of flutter_gbx, it contains
the definition of use cases, repositories, a few widgets and commonly
used type extensions.
Documentation
gbx_di is a dependency injection "abstraction" package, by default, it
uses get_it under the hood, but you
can replace it with any other dependency injection package or your own
implementation withou having to change anything else in your code.
Documentation
gbx_bloc contains helpers and base blocs to be used in your applications, one example is the "DataBloc", which can handle most data operation events (fetch, set, update, clean, fetch_more and refresh) while handling loading and errors automaticaly. Documentation