state_beacon 0.33.4 copy "state_beacon: ^0.33.4" to clipboard
state_beacon: ^0.33.4 copied to clipboard

A reactive primitive and simple state managerment solution for dart and flutter

example/state_beacon_example.dart

// ignore_for_file: avoid_print

import 'package:state_beacon/state_beacon.dart';

void main() {
  final name = Beacon.writable('Bob');
  final age = Beacon.writable(20);
  final college = Beacon.writable('MIT');

  Beacon.effect(() {
    var msg = '${name.value} is ${age.value} years old';

    if (age.value > 21) {
      msg += ' and can go to ${college.value}';
    }
    print(msg);
  });

  // prints "Alice is 20 years old"
  name.value = 'Alice';

  // prints "Alice is 21 years old"
  age.value = 21;

  // prints "Alice is 21 years old"
  college.value = 'Stanford';

  // prints "Alice is 22 years old and can go to Stanford"
  age.value = 22;

  // prints "Alice is 22 years old and can go to Harvard"
  college.value = 'Harvard';
}
30
likes
0
pub points
65%
popularity

Publisher

verified publishernosy.dev

A reactive primitive and simple state managerment solution for dart and flutter

Repository (GitHub)
View/report issues

Topics

#state #signal #reactive #beacon

License

unknown (license)

Dependencies

flutter, state_beacon_core

More

Packages that depend on state_beacon