atom_flutter 0.0.2 copy "atom_flutter: ^0.0.2" to clipboard
atom_flutter: ^0.0.2 copied to clipboard

A library that provides composable, reactive primitives for Flutter inspired by Signals and Runes.

⚛ Atom Flutter #

pub package ci [coverage] License: MIT

⚠️ Status: Experimental

Reactive primitives for Flutter. Built to work with package:atom.

Quick Start #

final count = atom(0);

class Counter extends AtomWidget {
  const Counter({super.key});

  @override
  Widget build(BuildContext context) {
    return TextButton(
      onPressed: () => count.update((value) => value + 1),
      child: Text('${count.value}'),
    );
  }
}
5
likes
155
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

A library that provides composable, reactive primitives for Flutter inspired by Signals and Runes.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

atom, flutter

More

Packages that depend on atom_flutter