初始化

This commit is contained in:
zhutao
2025-11-19 17:56:39 +08:00
commit 1b28239352
115 changed files with 5440 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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";
}