19 lines
		
	
	
		
			595 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			595 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
class RouteNames {
 | 
						|
 | 
						|
  // AUTH VIEW //
 | 
						|
  static const splashView = '/splash';
 | 
						|
  static const loginView = '/login';
 | 
						|
  static const signUpView = '/signUp';
 | 
						|
  static const getOtpView = '/getOtp';
 | 
						|
  static const verifyOtpView = '/verifyOtp';
 | 
						|
  static const registerAccView = '/registerAccount';
 | 
						|
  static const createAccView = '/createAccount';
 | 
						|
 | 
						|
  // MAIN APP VIEW //
 | 
						|
  static const homeView = '/home';
 | 
						|
  static const profileView = '/profile';
 | 
						|
  static const editProfileView = '/editProfile';
 | 
						|
  static const changePasswordView = '/changePassword';
 | 
						|
  static const systemParamsView = '/systemParams';
 | 
						|
}
 |