frost 2.0.0
frost: ^2.0.0 copied to clipboard
State management solution that decouples business logic from UI effortlessly. Frost uses reactive Properties, Watchers, and Signals with minimal boilerplate.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add frostThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
frost: ^2.0.0Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:frost/model.dart';
import 'package:frost/property.dart';
import 'package:frost/signal.dart';
import 'package:frost/store.dart';
import 'package:frost/watcher.dart';