This commit is contained in:
2023-12-22 07:32:13 +08:00
parent 1414bd4bb4
commit a8f9b5265e
21 changed files with 175 additions and 26 deletions

View File

@@ -1,5 +1,6 @@
import 'package:get/get.dart';
import '../pages/splash/index.dart';
import '../pages/login/index.dart';
class AppPages {
static const String initial = '/';
@@ -11,7 +12,8 @@ class AppPages {
name: AppPages.initial,
page: () => const SplashPage(),
binding: SplashBinding()),
// GetPage(name: AppPages.login, page: () => LoginPage()),
GetPage(
name: AppPages.login, page: () => LoginPage(), binding: LoginBinding()),
// GetPage(name: AppPages.home, page: () => HomePage()),
];
}