A fully customizable slider to confirm actions and provide feedback on the success. It supports different states like loading, success and failure.
LTR and RTL are both supported.
For a switch with a similar look, you can check out animated_toggle_switch.
ActionSlider.standard() with SliderBehavior.stretch

ActionSlider.standard() with TextDirection.rtl
ActionSlider.standard() with SliderIconAnimation.roll
ActionSlider.standard() with SliderBehavior.stretch and SliderIconAnimation.roll
You can build your own sliders with ActionSlider.custom()
Easy to use and highly customizable.
ActionSlider.standard(
child:constText('Slide to confirm'),
action: (controller) async {
controller.loading(); //starts loading animationawaitFuture.delayed(constDuration(seconds:3));
controller.success(); //starts success animation
},
... //many more parameters
)Two directions with ActionSlider.dual
ActionSlider.dual(
child:constText('Slide to confirm'),
startAction: (controller) async {
controller.success(expanded:true, side:SliderSide.start); //starts success animation with an expanded slider
},
endAction: (controller) async {
controller.success(); //starts success animation
},
... //many more parameters
)Maximum customizability with ActionSlider.custom.
ActionSlider.custom(
foregroundBuilder: (context, state, child) => ...,
backgroundBuilder: (context, state, child) => ...,
outerBackgroundBuilder: (context, state, child) => ...,
action: (controller) => ...,
... //many more parameters
)
