foundation 0.0.4 copy "foundation: ^0.0.4" to clipboard
foundation: ^0.0.4 copied to clipboard

Fundamental Components

Features #

  • Notifier
  • Disposer
  • Disposable

Usage #


class Bloc with Notifier {
  Bloc(Listenable dependency) {
    dependency.subscribe((){
      counter++;
      notifyListeners();
    }).disposeBy(this);
  }

  int counter = 0;
}