store_ds 1.0.1 copy "store_ds: ^1.0.1" to clipboard
store_ds: ^1.0.1 copied to clipboard

outdated

An awesome Flutter package to manage state of program declaratively and functionally.

example/README.md

Usage #

You can use store_ds to manage state as follows.

Widget build(BuildContext context) {

  // changeStore
  useStore('orders') ;

  saveToStore('cod', 10);
  saveToStore( 'cod' , getFromStore('cod' ) * 2); // results in cod : 20

  return Container(child: Text(getFromStore('cod').toString()));
}

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

An awesome Flutter package to manage state of program declaratively and functionally.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on store_ds