23 lines
		
	
	
		
			410 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			410 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
/// Base home page
 | 
						|
const homePage = "/";
 | 
						|
 | 
						|
/// Authentication path
 | 
						|
const authPage = "/login";
 | 
						|
 | 
						|
/// Qr Code authentication
 | 
						|
const qrAuthPath = "/login/qr";
 | 
						|
 | 
						|
/// Manual authentication
 | 
						|
const manualAuthPage = "/login/manual";
 | 
						|
 | 
						|
/// Settings path
 | 
						|
const settingsPage = "/settings";
 | 
						|
 | 
						|
/// Scan path
 | 
						|
const capturePage = "/scan";
 | 
						|
 | 
						|
/// Scans page
 | 
						|
const scansPage = "/scans";
 | 
						|
 | 
						|
/// Profile path
 | 
						|
const profilePage = "/profile"; |