anirudhsharma392 / Slider-Button

A flutter package for creating a slider button widget.
BSD 3-Clause "New" or "Revised" License
227 stars 73 forks source link

if the button is dismissed it can't appear again #43

Open ibrahimsebbane opened 4 months ago

ibrahimsebbane commented 4 months ago

When I put a dialog in the action of the SliderButton widget, if the dialog returns false and I trigger setState((){}), the method build is called but the button keeps not appearing. To be honest I don't know if this is an issue or a bad implementation from my side.

fondraco commented 3 months ago

The action parameter is of type Future<bool?> Function() action

In this function, you have to return true or false and then the button works as expected.