mirror of
https://github.com/ZhuJHua/moodiary.git
synced 2026-04-05 16:39:01 +08:00
76 lines
1.5 KiB
Dart
76 lines
1.5 KiB
Dart
abstract class AppRoutes {
|
|
//主页路由
|
|
static const homePage = '/home';
|
|
|
|
//登录路由
|
|
static const loginPage = '/login';
|
|
|
|
//日记页路由
|
|
static const diaryPage = '/diary';
|
|
|
|
//分析页路由
|
|
static const analysePage = '/analyse';
|
|
|
|
//设置页路由
|
|
static const settingPage = '/setting';
|
|
|
|
//新增/编辑日记页路由
|
|
static const editPage = '/edit';
|
|
|
|
//回收站路由
|
|
static const recyclePage = '/recycle';
|
|
|
|
//图片分享页路由
|
|
static const sharePage = '/share';
|
|
|
|
//字体调节页路由
|
|
static const fontPage = '/font';
|
|
|
|
//实验室路由
|
|
static const laboratoryPage = '/laboratory';
|
|
|
|
//画画路由
|
|
static const drawPage = '/draw';
|
|
|
|
//助手路由
|
|
static const assistantPage = '/assistant';
|
|
|
|
//启动页路由
|
|
static const startPage = '/start';
|
|
|
|
//隐私政策
|
|
static const privacyPage = '/privacy';
|
|
|
|
//用户协议
|
|
static const agreementPage = '/agreement';
|
|
|
|
//锁
|
|
static const lockPage = '/lock';
|
|
|
|
static const userPage = '/user';
|
|
|
|
//日记管理
|
|
static const diaryManagerPage = '/diaryManager';
|
|
|
|
//分类管理
|
|
static const categoryManagerPage = '/categoryManager';
|
|
|
|
//关于
|
|
static const aboutPage = '/about';
|
|
|
|
//地图
|
|
static const mapPage = '/map';
|
|
|
|
//日记个性化
|
|
static const diarySettingPage = '/diarySetting';
|
|
|
|
//备份与同步页
|
|
static const backupSyncPage = '/backupSync';
|
|
|
|
//捐助页
|
|
static const sponsorPage = '/sponsor';
|
|
|
|
//webView
|
|
static const webViewPage = '/webView';
|
|
}
|