atom_flutter 0.0.3 copy "atom_flutter: ^0.0.3" to clipboard
atom_flutter: ^0.0.3 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 #

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),
        ),
      ),
    );
  }
}
5
likes
150
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

atom, flutter

More

Packages that depend on atom_flutter