18 lines
341 B
Dart
18 lines
341 B
Dart
// part of 'app_pages.dart';
|
|
abstract class Routes {
|
|
// 登录
|
|
static const loginPage = '/loginPage';
|
|
|
|
// TAB页面
|
|
static const startPage = '/startPage';
|
|
|
|
// 首页
|
|
static const homePage = '/homePage';
|
|
|
|
// 我的
|
|
static const userPage = '/userPage';
|
|
|
|
// 会议首页
|
|
static const meetingMainPage = '/meetingMainPage';
|
|
}
|