Files
plan_flutter/lib/router/config/route_paths.dart
zhutao 193d29b0ce 1
2025-09-05 18:00:26 +08:00

27 lines
512 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 String planDetail([int? id]) => id != null ? "/planDetail/$id" : "/planDetail/:id";
static const test = "/test";
}