42 lines
1.5 KiB
Dart
42 lines
1.5 KiB
Dart
class RouteNames {
|
|
RouteNames._();
|
|
|
|
// Auth
|
|
static const splash = 'splash';
|
|
static const guide = 'guide';
|
|
static const onboarding = 'onboarding';
|
|
static const createWallet = 'create-wallet';
|
|
static const backupMnemonic = 'backup-mnemonic';
|
|
static const verifyMnemonic = 'verify-mnemonic';
|
|
static const walletCreated = 'wallet-created';
|
|
static const importWallet = 'import-wallet';
|
|
static const importMnemonic = 'import-mnemonic';
|
|
|
|
// Main tabs
|
|
static const ranking = 'ranking';
|
|
static const mining = 'mining';
|
|
static const trading = 'trading';
|
|
static const profile = 'profile';
|
|
|
|
// Sub pages
|
|
static const editProfile = 'edit-profile';
|
|
static const referralList = 'referral-list';
|
|
static const earningsDetail = 'earnings-detail';
|
|
static const notifications = 'notifications';
|
|
static const accountSwitch = 'account-switch';
|
|
static const deposit = 'deposit';
|
|
static const depositUsdt = 'deposit-usdt';
|
|
static const plantingQuantity = 'planting-quantity';
|
|
static const plantingLocation = 'planting-location';
|
|
static const googleAuth = 'google-auth';
|
|
static const changePassword = 'change-password';
|
|
static const bindEmail = 'bind-email';
|
|
static const transactionHistory = 'transaction-history';
|
|
static const ledgerDetail = 'ledger-detail';
|
|
static const withdrawUsdt = 'withdraw-usdt';
|
|
static const withdrawConfirm = 'withdraw-confirm';
|
|
|
|
// Share
|
|
static const share = 'share';
|
|
}
|