nucleus 0.4.0 copy "nucleus: ^0.4.0" to clipboard
nucleus: ^0.4.0 copied to clipboard

An atomic dependency and state management toolkit - fast, simple and composable.

example/main.dart

import 'package:nucleus/nucleus.dart';

final count = stateAtom(0);

void main(List<String> args) async {
  final store = AtomRegistry();

  print(store.get(count));
  store.set(count, 2);
  print(store.get(count));
}
12
likes
120
pub points
6%
popularity

Publisher

verified publishertimsmart.co

An atomic dependency and state management toolkit - fast, simple and composable.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on nucleus