File tree Expand file tree Collapse file tree 9 files changed +30
-20
lines changed Expand file tree Collapse file tree 9 files changed +30
-20
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.0
2
+ Same as 1.0.0-dev.9. This is just for making it clear that it's now stable.
3
+
1
4
## 1.0.0-dev.9
2
5
### Fixed
3
6
* Fixes an issue where we click on the Slidable instead of dragging it (https://github.com/letsar/flutter_slidable/pull/235 ).
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ packages:
7
7
name: async
8
8
url: "https://pub.dartlang.org"
9
9
source: hosted
10
- version: "2.5.0 "
10
+ version: "2.8.1 "
11
11
boolean_selector:
12
12
dependency: transitive
13
13
description:
@@ -28,7 +28,7 @@ packages:
28
28
name: charcode
29
29
url: "https://pub.dartlang.org"
30
30
source: hosted
31
- version: "1.2.0 "
31
+ version: "1.3.1 "
32
32
clock:
33
33
dependency: transitive
34
34
description:
@@ -68,7 +68,7 @@ packages:
68
68
path: ".."
69
69
relative: true
70
70
source: path
71
- version: "1.0.0-dev.9 "
71
+ version: "1.0.0"
72
72
flutter_test:
73
73
dependency: "direct dev"
74
74
description: flutter
@@ -87,7 +87,7 @@ packages:
87
87
name: meta
88
88
url: "https://pub.dartlang.org"
89
89
source: hosted
90
- version: "1.3 .0"
90
+ version: "1.7 .0"
91
91
path:
92
92
dependency: transitive
93
93
description:
@@ -106,7 +106,7 @@ packages:
106
106
name: source_span
107
107
url: "https://pub.dartlang.org"
108
108
source: hosted
109
- version: "1.8.0 "
109
+ version: "1.8.1 "
110
110
stack_trace:
111
111
dependency: transitive
112
112
description:
@@ -141,7 +141,7 @@ packages:
141
141
name: test_api
142
142
url: "https://pub.dartlang.org"
143
143
source: hosted
144
- version: "0.2.19 "
144
+ version: "0.4.2 "
145
145
typed_data:
146
146
dependency: transitive
147
147
description:
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class ActionPane extends StatefulWidget {
52
52
this .openThreshold,
53
53
this .closeThreshold,
54
54
required this .children,
55
- }) : assert (extentRatio > 0 && extentRatio <= 1 ),
55
+ }) : assert (extentRatio > 0 && extentRatio <= 1 ),
56
56
assert (
57
57
openThreshold == null || (openThreshold > 0 && openThreshold < 1 )),
58
58
assert (closeThreshold == null ||
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class CustomSlidableAction extends StatelessWidget {
25
25
this .autoClose = _kAutoClose,
26
26
required this .onPressed,
27
27
required this .child,
28
- }) : assert (flex > 0 ),
28
+ }) : assert (flex > 0 ),
29
29
super (key: key);
30
30
31
31
/// {@template slidable.actions.flex}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class _RenderFlexEntranceTransition extends RenderBox
56
56
Axis direction = Axis .horizontal,
57
57
required Animation <double > mainAxisPosition,
58
58
required bool startToEnd,
59
- }) : _direction = direction,
59
+ }) : _direction = direction,
60
60
_mainAxisPosition = mainAxisPosition,
61
61
_startToEnd = startToEnd {
62
62
addAll (children);
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class _RenderFlexExitTransition extends RenderBox
61
61
required Animation <double > mainAxisExtent,
62
62
double ? initialExtentRatio,
63
63
required bool startToEnd,
64
- }) : _direction = direction,
64
+ }) : _direction = direction,
65
65
_mainAxisExtent = mainAxisExtent,
66
66
_initialExtentRatio = initialExtentRatio,
67
67
_startToEnd = startToEnd {
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class SlidableNotificationListener extends StatefulWidget {
99
99
this .onNotification,
100
100
this .autoClose = true ,
101
101
required this .child,
102
- }) : assert (
102
+ }) : assert (
103
103
autoClose || onNotification != null ,
104
104
'Either autoClose or onNotification must be set.' ,
105
105
),
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ packages:
28
28
name: async
29
29
url: "https://pub.dartlang.org"
30
30
source: hosted
31
- version: "2.5.0 "
31
+ version: "2.8.1 "
32
32
boolean_selector:
33
33
dependency: transitive
34
34
description:
@@ -49,7 +49,7 @@ packages:
49
49
name: charcode
50
50
url: "https://pub.dartlang.org"
51
51
source: hosted
52
- version: "1.2.0 "
52
+ version: "1.3.1 "
53
53
cli_util:
54
54
dependency: transitive
55
55
description:
@@ -116,6 +116,13 @@ packages:
116
116
description: flutter
117
117
source: sdk
118
118
version: "0.0.0"
119
+ frontend_server_client:
120
+ dependency: transitive
121
+ description:
122
+ name: frontend_server_client
123
+ url: "https://pub.dartlang.org"
124
+ source: hosted
125
+ version: "2.1.2"
119
126
glob:
120
127
dependency: transitive
121
128
description:
@@ -171,7 +178,7 @@ packages:
171
178
name: meta
172
179
url: "https://pub.dartlang.org"
173
180
source: hosted
174
- version: "1.3 .0"
181
+ version: "1.7 .0"
175
182
mime:
176
183
dependency: transitive
177
184
description:
@@ -192,7 +199,7 @@ packages:
192
199
name: node_preamble
193
200
url: "https://pub.dartlang.org"
194
201
source: hosted
195
- version: "1.4.13 "
202
+ version: "2.0.1 "
196
203
package_config:
197
204
dependency: transitive
198
205
description:
@@ -281,7 +288,7 @@ packages:
281
288
name: source_span
282
289
url: "https://pub.dartlang.org"
283
290
source: hosted
284
- version: "1.8.0 "
291
+ version: "1.8.1 "
285
292
stack_trace:
286
293
dependency: transitive
287
294
description:
@@ -316,21 +323,21 @@ packages:
316
323
name: test
317
324
url: "https://pub.dartlang.org"
318
325
source: hosted
319
- version: "1.16.5 "
326
+ version: "1.17.10 "
320
327
test_api:
321
328
dependency: transitive
322
329
description:
323
330
name: test_api
324
331
url: "https://pub.dartlang.org"
325
332
source: hosted
326
- version: "0.2.19 "
333
+ version: "0.4.2 "
327
334
test_core:
328
335
dependency: transitive
329
336
description:
330
337
name: test_core
331
338
url: "https://pub.dartlang.org"
332
339
source: hosted
333
- version: "0.3.15 "
340
+ version: "0.4.0 "
334
341
typed_data:
335
342
dependency: transitive
336
343
description:
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.9
3
+ version : 1.0.0
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