built_bloc 0.2.10-dev copy "built_bloc: ^0.2.10-dev" to clipboard
built_bloc: ^0.2.10-dev copied to clipboard

outdated

Generates the BLoC boilerplate.

built_bloc #

Helper class for adopting the BLoC pattern, alongside with a few annotations to use in combination with built_bloc_generator (which is stongly recommended).

Quickstart #

Simply extends from Bloc and add your subjects and subscriptions.

class ExampleBloc extends Bloc {
  Sink<int> get add => this._add.sink;

  Stream<int> get count => this._add.stream;

  final PublishSubject<int> _add = PublishSubject<int>();

  final BehaviorSubject<int> _count = BehaviorSubject<int>(seedValue: 0);

  ExampleBloc() {
    this.subjects.addAll([_add, _count]);
    this.subscriptions.addAll([ _add.listen(_onAdd) ]);
  }

  void _onAdd(int value) {
    this._count.add(this._count.value + 1);
  }
}

How to use #

Install #

dependencies:
  built_bloc:
0
likes
0
pub points
7%
popularity

Publisher

unverified uploader

Generates the BLoC boilerplate.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta, rxdart

More

Packages that depend on built_bloc