beholder_provider

Last updated:

0 purchases

beholder_provider Image
beholder_provider Images
Add to Cart

Description:

beholder provider

class CounterVm extends ViewModel {
late final counter = state(0);
}

Widget build(BuildContext context) => ViewModelProvider(
create: (_) => CounterVm(),
builder: (context, watch) {
return Text('${watch(counter)}');
}
);
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.