levit 0.0.7
levit: ^0.0.7 copied to clipboard
Levit Dart Kit for Dart applications. Includes levit_reactive, levit_scope and levit_dart.
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++;
}