You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			726 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			726 B
		
	
	
	
		
			Dart
		
	
| 
 | |
| import 'package:mohem_flutter_app/pages/login/login_screen.dart';
 | |
| import 'package:mohem_flutter_app/pages/user/splash_page.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| 
 | |
| class AppRoutes {
 | |
|   //User
 | |
|   static final String splash = "/splash";
 | |
|   static final String registerSelection = "/registerSelection";
 | |
|   static final String loginVerifyAccount = "/loginVerifyAccount";
 | |
|   static final String login = "/login";
 | |
|   static final String forgetPassword = "/forgetPassword";
 | |
|   static final String loginVerification = "/loginVerification";
 | |
|   static final String dashboard = "/dashboard";
 | |
| 
 | |
|   static final String initialRoute = login;
 | |
| 
 | |
|   static final Map<String, WidgetBuilder> routes = {
 | |
|     login: (context) => LoginScreen(),
 | |
|   };
 | |
| }
 |