Files
zh-chat-flutter/lib/routes/app_routes.dart
2022-10-19 10:54:45 +08:00

18 lines
420 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// 这里是为了定义别名路由的名称,
/// 具体映射关系在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';
}