75 lines
2.2 KiB
Dart
75 lines
2.2 KiB
Dart
/* CREATED BY - JAYESH JAIN
|
|
DATE - 24-05-2024
|
|
*/
|
|
|
|
class RouteName {
|
|
//Splash
|
|
static const String splashScreen = '/';
|
|
|
|
//Login
|
|
static const String loginScreen = 'loginScreen';
|
|
|
|
//Register
|
|
static const String registerStepScreen = 'registerStepScreen';
|
|
static const String registerScreen = 'registerScreen';
|
|
static const String registerUserDetailsScreen = 'registerUserDetailsScreen';
|
|
|
|
//No Internet
|
|
static const String noInternetScreen = 'noInternet';
|
|
|
|
//Welcome
|
|
static const String welcomeScreen = 'welcome';
|
|
|
|
//choose country
|
|
static const String chooseCountryScreen = 'chooseCountryScreen';
|
|
|
|
//
|
|
static const String mainScreen = 'mainScreen';
|
|
|
|
//Portfolio details
|
|
static const String porfolioDetails = 'porfolioDetails';
|
|
|
|
//Academy details
|
|
static const String academyDetails = 'academyDetails';
|
|
|
|
//Wallet details
|
|
static const String walletDetails = 'walletDetails';
|
|
static const String withdrawalScreen = 'withdrawalScreen';
|
|
static const String withdrawalPreview = 'withdrawalPreview';
|
|
static const String withdrawalConfirmation = 'withdrawalConfirmation';
|
|
static const String depositScreen = 'depositScreen';
|
|
static const String depositPreview = 'depositPreview';
|
|
|
|
//Biometric
|
|
static const String biometricScreen = 'biometricScreen';
|
|
|
|
//Otp Screen
|
|
static const String otpScreen = 'otpScreen';
|
|
|
|
//Pin Screen
|
|
static const String pinScreen = 'pinScreen';
|
|
static const String confirmPinScreen = 'confirmPinScreen';
|
|
|
|
//Forgot Password
|
|
static const String forgotPasswordPhoneVerificationScreen =
|
|
'forgotPasswordPhoneVerificationScreen';
|
|
static const String forgotPasswordScreen = 'forgotPasswordScreen';
|
|
|
|
//contact Admin
|
|
static const String contactAdminScreen = 'contactAdminScreen';
|
|
|
|
//language change
|
|
static const String languageChangeScreen = 'languageChangeScreen';
|
|
|
|
//delete Account
|
|
static const String deleteAccountScreen = 'deleteAccountScreen';
|
|
|
|
//change password
|
|
static const String changePasswordScreen = "changePasswordScreen";
|
|
|
|
//invest
|
|
static const String investDetailScreen = "investDetailScreen";
|
|
static const String investPaymentScreen = "investPaymentScreen";
|
|
static const String confirmInvestScreen = "confirmInvestScreen";
|
|
}
|