File tree Expand file tree Collapse file tree 4 files changed +19
-5
lines changed Expand file tree Collapse file tree 4 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 2323# * ListWheelScrollView: fix_list_wheel_scroll_view.yaml
2424version : 1
2525transforms :
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+
2637 # Changes made in https://github.com/flutter/flutter/pull/114459
2738 - title : " Migrate to 'boldTextOf'"
2839 date : 2022-10-28
Original file line number Diff line number Diff line change @@ -32,11 +32,6 @@ class AnimatedSize extends StatefulWidget {
3232 this .curve = Curves .linear,
3333 required this .duration,
3434 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,
4035 this .clipBehavior = Clip .hardEdge,
4136 });
4237
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ void main() {
1010 RenderObjectWidget renderObjectWidget;
1111 RenderObject renderObject;
1212 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);
1317
1418 // Changes made in https://github.com/flutter/flutter/pull/45941 and https://github.com/flutter/flutter/pull/83843
1519 final WidgetsBinding binding = WidgetsBinding .instance;
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ void main() {
1010 RenderObjectWidget renderObjectWidget;
1111 RenderObject renderObject;
1212 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);
1317
1418 // Changes made in https://github.com/flutter/flutter/pull/45941 and https://github.com/flutter/flutter/pull/83843
1519 final WidgetsBinding binding = WidgetsBinding.instance;
You can’t perform that action at this time.
0 commit comments