Files
xueguang_flutter_app/lib/router/route_paths.dart
2025-11-19 17:56:39 +08:00

21 lines
403 B
Dart

class RoutePaths {
RoutePaths._();
///闪烁页
static const splash = "/";
///登录
static const login = "/login";
///协议
static const agreement = "/agreement";
///老师端、学生端首页
static const tHome = "/t/home";
static const sHome = "/s/home";
///老师端、学生端自习室
static const tRoom = "/t/study_room";
static const sRoom = "/s/study_room";
}