mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-26 11:16:45 +08:00
chore: Migration to Dart 3.8 (#6668)
* Migration to Dart 3.8 * New GA * Fix dartdoc
This commit is contained in:
@ -75,12 +75,13 @@ class _SmoothInteractiveViewerState extends State<SmoothInteractiveViewer>
|
||||
_animationController.duration = SmoothAnimationsDuration.short;
|
||||
}
|
||||
|
||||
_animation = Matrix4Tween(
|
||||
begin: _transformationController.value,
|
||||
end: matrix,
|
||||
).animate(
|
||||
CurveTween(curve: Curves.easeInCubic).animate(_animationController),
|
||||
);
|
||||
_animation =
|
||||
Matrix4Tween(
|
||||
begin: _transformationController.value,
|
||||
end: matrix,
|
||||
).animate(
|
||||
CurveTween(curve: Curves.easeInCubic).animate(_animationController),
|
||||
);
|
||||
_animationController.forward(from: 0);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user