built_bloc 0.3.3 copy "built_bloc: ^0.3.3" to clipboard
built_bloc: ^0.3.3 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>.seeded(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
8%
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