anirudhsharma392 / Slider-Button

A flutter package for creating a slider button widget.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

action: doesn't work with any method

i-zanis opened this issue · comments

A lot of work has been put into this widget. It is great.

There is a problem with the action, it does not fire anything.

Many thanks.

action: () {
print("--------------------------");
},

I had the same issue.
I viewed the code. It seems dismiss trashold is default 1.0 in the lib. (The button uses Dismissble to recognize the action)
Just reduce it to like .8 and it should work fine. (-;

Read the docs about dismissThresholds here: https://api.flutter.dev/flutter/widgets/Dismissible/dismissThresholds.html

Hope i could help (-:

I had the same issue. I viewed the code. It seems dismiss trashold is default 1.0 in the lib. (The button uses Dismissble to recognize the action) Just reduce it to like .8 and it should work fine. (-;

Read the docs about dismissThresholds here: https://api.flutter.dev/flutter/widgets/Dismissible/dismissThresholds.html

Hope i could help (-:

This work for me. Thank!!!

sliderButtion(..., dismissThresholds: 0.8, ...)

This should be resolved in version 2.0.0