Files
MoneyMgr/moneymgr_mobile/lib/services/router/routes_list.dart

23 lines
407 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 scanPage = "/scan";
/// Scans page
const scansPage = "/scans";
/// Profile path
const profilePage = "/profile";