Commit 0c17ac6c261533d844d7647ebe26b116c2c6ae0c

Authored by 常守达
1 parent 412d7134

fix(today):loading过度动画

Showing 1 changed file with 2 additions and 1 deletions
@@ -77,6 +77,7 @@ abstract final class AppPages { @@ -77,6 +77,7 @@ abstract final class AppPages {
77 name: AppRoutes.splash, 77 name: AppRoutes.splash,
78 page: () => const SplashPage(), 78 page: () => const SplashPage(),
79 binding: SplashBinding(), 79 binding: SplashBinding(),
  80 + transition: Transition.fadeIn,
80 ), 81 ),
81 GetPage( 82 GetPage(
82 name: AppRoutes.login, 83 name: AppRoutes.login,
@@ -97,7 +98,7 @@ abstract final class AppPages { @@ -97,7 +98,7 @@ abstract final class AppPages {
97 GetPage( 98 GetPage(
98 name: AppRoutes.home, 99 name: AppRoutes.home,
99 page: () => const HomePage(), 100 page: () => const HomePage(),
100 - transition: Transition.fade, 101 + transition: Transition.fadeIn,
101 binding: HomeBinding(), 102 binding: HomeBinding(),
102 ), 103 ),
103 GetPage( 104 GetPage(