chore: Migration to Dart 3.8 (#6668)

* Migration to Dart 3.8

* New GA

* Fix dartdoc
This commit is contained in:
Edouard Marquez
2025-06-23 18:14:17 +02:00
committed by GitHub
parent dda75e283e
commit e3bc40fdf3
628 changed files with 18834 additions and 17076 deletions

View File

@ -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);
}