levit 0.0.11
levit: ^0.0.11 copied to clipboard
Deterministic ownership and fine-grained reactivity for pure Dart applications.
import 'package:levit/levit.dart';
void main() {
// `levit` exposes reactive, scope, and dart-core APIs from one import.
final count = 0.lx;
count.addListener(() {
print('Count changed: ${count.value}');
});
count.value++;
}