Skip to content

Commit

Permalink
Fixed linting problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroafmonteiro committed Dec 7, 2024
1 parent 2bbb8b5 commit 7ba2e64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/uni_app/lib/view/login/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class LoginPageViewState extends State<LoginPageView>
) {
return ScaleTransition(
scale: animation.drive(
Tween(begin: 1.0, end: 1.0).chain(
Tween<double>(begin: 1, end: 1).chain(
CurveTween(curve: Curves.easeInOut),
),
),
Expand Down
2 changes: 1 addition & 1 deletion packages/uni_app/lib/view/splash/splash.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class _SplashScreenViewState extends State<SplashScreenView> {
) {
return ScaleTransition(
scale: animation.drive(
Tween(begin: 0.0, end: 1.0).chain(
Tween<double>(begin: 0, end: 1).chain(
CurveTween(curve: Curves.easeInOut),
),
),
Expand Down

0 comments on commit 7ba2e64

Please sign in to comment.