This commit is contained in:
2023-12-22 01:36:07 +08:00
commit 1414bd4bb4
77 changed files with 2327 additions and 0 deletions

17
lib/router/app_pages.dart Normal file
View File

@@ -0,0 +1,17 @@
import 'package:get/get.dart';
import '../pages/splash/index.dart';
class AppPages {
static const String initial = '/';
static const String login = '/login';
static const String home = '/home';
static final List<GetPage> routes = [
GetPage(
name: AppPages.initial,
page: () => const SplashPage(),
binding: SplashBinding()),
// GetPage(name: AppPages.login, page: () => LoginPage()),
// GetPage(name: AppPages.home, page: () => HomePage()),
];
}