Last updated:
0 purchases
atom flutter
⚛ Atom Flutter #
⚠️ Status: Experimental
Reactive primitives for Flutter. Built to work with package:atom.
Quick Start #
class CounterApp extends AtomWidget {
CounterApp({super.key});
final count = atom(0);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Center(
child: TextButton(
child: Text('${count.value}'),
onPressed: () => count.update((value) => value + 1),
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.