solidart 0.2.4 copy "solidart: ^0.2.4" to clipboard
solidart: ^0.2.4 copied to clipboard

A simple State Management solution for Dart applications inspired by SolidJS

example/main.dart

import 'dart:async';

import 'package:solidart/solidart.dart';

Future<void> main() async {
  final counter = createSignal(0);
  createEffect(
    () {
      print("The counter is now: ${counter.value}");
    },
    signals: [counter],
    fireImmediately: true,
  );

  counter.value++;

  // The signal sets the value asynchronously, so here we await for the value
  // to be notified to listeners.
  await Future.value();

  // dispose the counter;
  counter.dispose();
}
52
likes
0
pub points
54%
popularity

Publisher

verified publishermariuti.com

A simple State Management solution for Dart applications inspired by SolidJS

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

meta

More

Packages that depend on solidart