value_listenable_listener

Creator: coderz1093

Last updated:

0 purchases

value_listenable_listener Image
value_listenable_listener Images
Add to Cart

Description:

value listenable listener

Features #
The widget will help you to listen the changes of any ValueListenable
Usage #
final ValueNotifier<int> counter = ValueNotifier(0);

ValueListenableListener<int>(
valueListenable: counter,
listener: (int value) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Value Listened Successfully'),
),
);
},
child: const SizedBox.shrink(),
),
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.