This commit is contained in:
2022-10-19 10:54:45 +08:00
commit 153e28aa4e
115 changed files with 4215 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/// 这里是为了定义别名路由的名称,
/// 具体映射关系在app_router 的 getPages 中实现
abstract class AppRoutes {
/// 过渡页
static const String transit = '/transit';
/// 找不到页面的时候
static const String notfound = '/notfound';
/// 根页面
static const String app = '/';
/// 首页
static const String home = '/home';
static const String scan = '/scan';
}