Example
![My GIF](https://drive.google.com/uc?id=1yyYogp0Ph440tgKOOHT6WN_y7ZvOElte)How to use
SmartSlider(
controller: controller,
onSlideComplete: () async {
controller.loading();
await Future.delayed(Duration(seconds: 2)).then(
(value) {
controller.success();
_incrementCounter();
},
);
await Future.delayed(Duration(seconds: 2)).then(
(value) {
controller.reset();
},
);
},
);