12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- class RouterPath {
-
- static const splash = '/';
- static const guide = '/guide';
-
- static const authLogin = '/auth/login';
- static const authForgotInput = '/auth/forgot/input';
- static const authForgotVerify = '/auth/forgot/verify';
- static const authSignUp = '/auth/signup';
- static const authResetPassword = '/auth/rest_psd';
-
- static const main = '/main';
- static const settings = '/settings';
- static const notification = '/notification';
-
- static const profileEdit = '/profile/edit';
-
- static const community = '/community';
-
- static const facility = '/facility';
-
- static const form = '/form';
-
- static const noticeBoard = '/notice_board';
-
- static const payment = '/payment';
-
- static const property = '/property';
- static const propertyIoan = 'property/ioan';
- static const propertyNews = 'property/news';
- static const propertySale = 'property/sale';
- static const propertyRent = 'property/rent';
- static const propertyNewsDetail = '/property_news_detail';
-
- static const rewards = '/rewards';
-
- static const services = '/services';
-
- static const previewImage = '/preview/image';
- static const globalWeb = '/global/web/:isShowAppBar/:initialUrl/:title';
-
- static const runAloneMain = '/runalone/main';
- }
|