File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
platform_views_layout_hybrid_composition/lib
platform_views_layout/lib Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,13 @@ class _RotationContainerState extends State<RotationContainer>
116
116
);
117
117
_rotationController.repeat ();
118
118
}
119
+
120
+ @override
121
+ void dispose () {
122
+ _rotationController.dispose ();
123
+ super .dispose ();
124
+ }
125
+
119
126
@override
120
127
Widget build (BuildContext context) {
121
128
return RotationTransition (
Original file line number Diff line number Diff line change @@ -121,6 +121,13 @@ class _RotationContainerState extends State<RotationContainer>
121
121
);
122
122
_rotationController.repeat ();
123
123
}
124
+
125
+ @override
126
+ void dispose () {
127
+ _rotationController.dispose ();
128
+ super .dispose ();
129
+ }
130
+
124
131
@override
125
132
Widget build (BuildContext context) {
126
133
return RotationTransition (
You can’t perform that action at this time.
0 commit comments