atom_flutter

Last updated:

0 purchases

atom_flutter Image
atom_flutter Images
Add to Cart

Description:

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

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.