21 lines
403 B
Dart
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";
|
|
}
|