42 lines
1.5 KiB
Dart
42 lines
1.5 KiB
Dart
class RoutePaths {
|
|
RoutePaths._();
|
|
|
|
// Auth
|
|
static const splash = '/';
|
|
static const guide = '/guide';
|
|
static const onboarding = '/onboarding';
|
|
static const createWallet = '/auth/create';
|
|
static const backupMnemonic = '/auth/backup-mnemonic';
|
|
static const verifyMnemonic = '/auth/verify-mnemonic';
|
|
static const walletCreated = '/auth/wallet-created';
|
|
static const importWallet = '/auth/import';
|
|
static const importMnemonic = '/auth/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 = '/profile/edit';
|
|
static const referralList = '/profile/referrals';
|
|
static const earningsDetail = '/profile/earnings';
|
|
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 = '/security/google-auth';
|
|
static const changePassword = '/security/password';
|
|
static const bindEmail = '/security/email';
|
|
static const transactionHistory = '/trading/history';
|
|
static const ledgerDetail = '/trading/ledger';
|
|
static const withdrawUsdt = '/withdraw/usdt';
|
|
static const withdrawConfirm = '/withdraw/confirm';
|
|
|
|
// Share
|
|
static const share = '/share';
|
|
}
|