25 lines
430 B
Dart
25 lines
430 B
Dart
class RoutePaths {
|
|
RoutePaths._();
|
|
|
|
///闪烁页
|
|
static const splash = "/";
|
|
|
|
///协议页
|
|
static const agreement = "/agreement";
|
|
|
|
///登录
|
|
static const login = "/login";
|
|
|
|
///登陆验证码
|
|
static const loginCode = "/loginCode";
|
|
|
|
///首页
|
|
static const layout = "/layout";
|
|
|
|
///计划历史页
|
|
static const planHistory = "/planHistory";
|
|
|
|
///计划详情页
|
|
static const planDetail = "/planDetail";
|
|
}
|