jolt 0.0.5 copy "jolt: ^0.0.5" to clipboard
jolt: ^0.0.5 copied to clipboard

A lightweight reactive state management library built on alien_signals, focused on simple and efficient state handling.

example/jolt_example.dart

import 'package:jolt/jolt.dart';

void main() {
  final a = Signal(1);
  final b = Computed(() => a.value + 1);

  Effect(() {
    print(b.value);
  });

  a.value = 2;
}
1
likes
160
points
144
downloads

Publisher

unverified uploader

Weekly Downloads

A lightweight reactive state management library built on alien_signals, focused on simple and efficient state handling.

Repository (GitHub)
View/report issues

Topics

#jolt #state-management #signals

Documentation

API reference

License

MIT (license)

Dependencies

meta, shared_interfaces

More

Packages that depend on jolt