router_path.dart 778 B

123456789101112131415161718192021222324252627
  1. class RouterPath {
  2. // 默认的路由
  3. static const splash = '/';
  4. static const guide = '/guide'; //指引页面
  5. //用户
  6. static const authLogin = '/auth/login'; //用户登录注册
  7. static const authSignUp = '/auth/signup'; //注册
  8. static const authResetPassword = '/auth/rest_psd'; //重置密码
  9. //首页
  10. static const main = '/main';
  11. static const settings = '/settings';
  12. static const notification = '/notification';
  13. //用户
  14. static const profileEdit = '/profile/edit';
  15. //全局其他
  16. static const previewImage = '/preview/image'; //预览图片
  17. static const globalWeb = '/global/web/:isShowAppBar/:initialUrl/:title'; //全局公用的Web页面
  18. //Runalone
  19. static const runAloneMain = '/runalone/main'; //独立运行的入口页面
  20. }