21 lines
429 B
Dart
21 lines
429 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';
|
|
|
|
// 协议政策阅读展示
|
|
static const agreementReadPage = '/agreementReadPage';
|
|
}
|