ezbloc_flutter 0.13.0 copy "ezbloc_flutter: ^0.13.0" to clipboard
ezbloc_flutter: ^0.13.0 copied to clipboard

Making blocs easy again. A simplified library for the original bloc approach.

ezbloc_flutter #

ezbloc_flutter is a Flutter package that simplifies state management using the BLoC pattern. It provides a collection of widgets and utilities to make it easy to manage state and build reactive UIs.

Pros #

  • Simplifies state management using the BLoC pattern
  • Compile time checking to prevent type and null errors at runtime
  • Easy to use with a clean and intuitive API
  • Reduces boilerplate code and improves code organization
  • Supports both synchronous and asynchronous operations

Bloc Builder #

Keeps your UI in sync with the State of your app. It's StatelessWidget widget that only rebuilds the relative child, instead of rebuilding entire page.

bloc.builder(
  onState: (context, data) => Text(data.toString()),
  onBusy: (_, data) => Text('Working'),
  onError: (_, e) => Text('Error Occurred: $e'),
)

for details see example

Bloc Container #

A container where you can store all your blocs on app startup, and then access them anywhere in your app independently of the widget tree.

void main() {
  BlocContainer.add((context, args) => CounterBloc(args));
  final counterBloc = BlocContainer.get(arg: 0);
}

see example

Contribution ❤ #

Issues and pull requests are welcome

Please file feature requests and bugs at the issue tracker.

2
likes
130
pub points
31%
popularity

Publisher

verified publishermuha.dev

Making blocs easy again. A simplified library for the original bloc approach.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

ezbloc, flutter, hive, path, quick_log, rxdart

More

Packages that depend on ezbloc_flutter