This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 4 files changed +19
-5
lines changed
4 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 23
23
# * ListWheelScrollView: fix_list_wheel_scroll_view.yaml
24
24
version : 1
25
25
transforms :
26
+ # Changes made in https://github.com/flutter/flutter/pull/119186 and https://github.com/flutter/flutter/pull/81067.
27
+ - title : " Remove 'vsync'"
28
+ date : 2023-01-30
29
+ element :
30
+ uris : ['widgets.dart', 'material.dart', 'cupertino.dart']
31
+ constructor : ' '
32
+ inClass : ' AnimatedSize'
33
+ changes :
34
+ - kind : ' removeParameter'
35
+ name : ' vsync'
36
+
26
37
# Changes made in https://github.com/flutter/flutter/pull/114459
27
38
- title : " Migrate to 'boldTextOf'"
28
39
date : 2022-10-28
Original file line number Diff line number Diff line change @@ -32,11 +32,6 @@ class AnimatedSize extends StatefulWidget {
32
32
this .curve = Curves .linear,
33
33
required this .duration,
34
34
this .reverseDuration,
35
- @Deprecated (
36
- 'This field is now ignored. '
37
- 'This feature was deprecated after v2.2.0-10.1.pre.'
38
- )
39
- TickerProvider ? vsync,
40
35
this .clipBehavior = Clip .hardEdge,
41
36
});
42
37
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ void main() {
10
10
RenderObjectWidget renderObjectWidget;
11
11
RenderObject renderObject;
12
12
Object object;
13
+ TickerProvider vsync;
14
+
15
+ // Changes made in https://github.com/flutter/flutter/pull/119186 and https://github.com/flutter/flutter/pull/81067.
16
+ AnimatedSize (vsync: vsync, duration: Duration .zero);
13
17
14
18
// Changes made in https://github.com/flutter/flutter/pull/45941 and https://github.com/flutter/flutter/pull/83843
15
19
final WidgetsBinding binding = WidgetsBinding .instance;
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ void main() {
10
10
RenderObjectWidget renderObjectWidget;
11
11
RenderObject renderObject;
12
12
Object object;
13
+ TickerProvider vsync;
14
+
15
+ // Changes made in https://github.com/flutter/flutter/pull/119186 and https://github.com/flutter/flutter/pull/81067.
16
+ AnimatedSize(duration: Duration.zero);
13
17
14
18
// Changes made in https://github.com/flutter/flutter/pull/45941 and https://github.com/flutter/flutter/pull/83843
15
19
final WidgetsBinding binding = WidgetsBinding.instance;
You can’t perform that action at this time.
0 commit comments