File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.0-dev.9
2
+ ### Fixed
3
+ * Fixes an issue where we click on the Slidable instead of dragging it (https://github.com/letsar/flutter_slidable/pull/235 ).
4
+
1
5
## 1.0.0-dev.8
2
6
### Fixed
3
7
* Fixes an issue where the Dismissible animation stopped in middle when the gesture was too fast.
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ packages:
68
68
path: ".."
69
69
relative: true
70
70
source: path
71
- version: "1.0.0-dev.8 "
71
+ version: "1.0.0-dev.9 "
72
72
flutter_test:
73
73
dependency: "direct dev"
74
74
description: flutter
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ class _SlidableGestureDetectorState extends State<SlidableGestureDetector> {
76
76
77
77
void handleDragStart (DragStartDetails details) {
78
78
startPosition = details.localPosition;
79
+ lastPosition = startPosition;
79
80
dragExtent = dragExtent.sign *
80
81
overallDragAxisExtent *
81
82
widget.controller.ratio *
Original file line number Diff line number Diff line change 1
1
name : flutter_slidable
2
2
description : A Flutter implementation of slidable list item with directional slide actions that can be dismissed.
3
- version : 1.0.0-dev.8
3
+ version : 1.0.0-dev.9
4
4
homepage : https://github.com/letsar/flutter_slidable
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments