94 lines
4.4 KiB
Dart
94 lines
4.4 KiB
Dart
class RouteConstant {
|
|
static const String splashScreen = "/";
|
|
static const String getStartedScreen = "/getStartedScreen";
|
|
// Login Screens.................................
|
|
static const String loginFirstScreen = "/login";
|
|
static const String emailLoginScreen = "/emailLogin";
|
|
static const String loginResetPasswordSendScreen =
|
|
"/emailLogin/resetPassword/Send";
|
|
static const String loginEnterOtpScreen = "/login/enterOTP";
|
|
static const String loginSetNewPasswordScreen = "/login/setNewPassword";
|
|
|
|
// Register Screens...............................
|
|
|
|
static const String signUpScreen = "/createAccount";
|
|
static const String signupEnterOtpScreen = "/createAccount/signupOTP";
|
|
static const String signUpSetPassword =
|
|
"/createAccount/signupOTP/setPassword";
|
|
static const String signUpCreateProfile =
|
|
"/createAccount/signupOTP/setPassword/createProfile";
|
|
|
|
static const String signUpCreateUserFinalAccount =
|
|
"/createProfile/createFinalAccount";
|
|
static const String dashboardScreen = "/dashboard";
|
|
|
|
// My Account Screens..............................
|
|
// Trainee
|
|
static const String traineeMyProfile = "/trainee/account/myprofile";
|
|
static const String traineeCoachEditProfile =
|
|
"/trainee/account/myprofile/edit-profilre";
|
|
|
|
static const String traineeHealthInformationScreen =
|
|
"/trainee/account/myprofile/health-info";
|
|
static const String traineeMyactivity = "/trainee/account/myactivity";
|
|
static const String traineeAchievementScreen =
|
|
"/trainee/account/achievements";
|
|
|
|
static const String becomeACoachScreen = "/trainee/become-coach";
|
|
|
|
static const String traineetermsAndConditions = "/trainee/terms-conditions";
|
|
static const String privecyPolicyScreen = "/trainee/privacy-policy";
|
|
|
|
static const String preferredFitnessgoalScreen = "/trainee/preferred-goal";
|
|
// My Account Screens..............................
|
|
// Coach
|
|
static const String coachMyProfile = "/coach/account/myprofile";
|
|
static const String coachClientManagement =
|
|
"/coach/account/client-management";
|
|
static const String coachServiceOfferings =
|
|
"/coach/account/myprofile/service-offering";
|
|
static const String professionalInfoScreen =
|
|
"/coach/account/myprofile/professional-Info";
|
|
|
|
//... U-vault.........................................................
|
|
static const String viewUvault = "/account/viewUvault";
|
|
static const String uploadUvaultVideos = "/coach/account/uploadUvaultVideos";
|
|
static const String updateUvaultVideos = "/coach/account/updateUvaultVideos";
|
|
|
|
static const String draftUvaultVideos = "/coach/account/draft-uvault-videos";
|
|
static const String myUploadedUvaultVideos =
|
|
"/coach/account/my-uvault-videos";
|
|
|
|
//... Echo-Boadd.........................................................
|
|
|
|
static const String viewPosts = "/echoboard/posts";
|
|
static const String userSearchScreen = "/echoboard/search-users";
|
|
static const String uploadSocialPostScreen = "/echoboard/upload-posts";
|
|
static const String chatListScreen = "/echoboard/chats";
|
|
static const String friendRequestScreen = "/echoboard/friend-requests";
|
|
|
|
static const String pollCreateScreen = "/echoboard/create-poll";
|
|
static const String userSocialProfileScreen = "/echoboard/social-profile";
|
|
|
|
static const String userListViewScreenForTribe = "/echoboard/userlist-tribe";
|
|
static const String exclusiveConnectionSelectionScreen =
|
|
"/echoboard/exclusive-connection-selection";
|
|
static const String viewTribeScreen = "/echoboard/connections/tribe-list";
|
|
//Notification....................................................................
|
|
static const String notificationListScreen = "/notification";
|
|
|
|
// Challenges...................................................................
|
|
static const String createChallengeScreen =
|
|
"/account/challenge/create-challenge";
|
|
static const String challengeListScreen = "/account/challenge";
|
|
|
|
//Goal...............................................................................
|
|
static const String goalScreen = "/goal";
|
|
//... Call Screens...................................................................
|
|
static const String incomingCallScreen = "/echoboard/call/incoming";
|
|
static const String outgoingCallScreen = "/echoboard/call/outgoing";
|
|
static const String activeCallScreen = "/echoboard/call/active";
|
|
//Live Stream...............................................................................
|
|
static const String singleLiveStreamScreen = "/live-Stream";
|
|
}
|