Display the list of expenses
This commit is contained in:
@ -7,6 +7,7 @@ import 'package:moneymgr_mobile/routes/login/manual_auth_screen.dart';
|
||||
import 'package:moneymgr_mobile/routes/login/qr_auth_screen.dart';
|
||||
import 'package:moneymgr_mobile/routes/profile/profile_screen.dart';
|
||||
import 'package:moneymgr_mobile/routes/scan/scan_screen.dart';
|
||||
import 'package:moneymgr_mobile/routes/scans_list/scans_list_screen.dart';
|
||||
import 'package:moneymgr_mobile/routes/settings/settings_screen.dart';
|
||||
import 'package:moneymgr_mobile/services/router/routes_list.dart';
|
||||
import 'package:moneymgr_mobile/widgets/load_startup_data.dart';
|
||||
@ -41,6 +42,13 @@ GoRouter router(Ref ref) {
|
||||
selectedIcon: Icons.camera_alt,
|
||||
label: "Scan",
|
||||
),
|
||||
NavigationItem(
|
||||
path: scansPage,
|
||||
body: (_) => ScansListScreen(),
|
||||
icon: Icons.list,
|
||||
selectedIcon: Icons.list_alt,
|
||||
label: "List",
|
||||
),
|
||||
NavigationItem(
|
||||
path: profilePage,
|
||||
body: (_) => ProfileScreen(),
|
||||
|
@ -13,8 +13,11 @@ const manualAuthPage = "/login/manual";
|
||||
/// Settings path
|
||||
const settingsPage = "/settings";
|
||||
|
||||
/// Scan URL path
|
||||
/// Scan path
|
||||
const scanPage = "/scan";
|
||||
|
||||
/// Scans page
|
||||
const scansPage = "/scans";
|
||||
|
||||
/// Profile path
|
||||
const profilePage = "/profile";
|
Reference in New Issue
Block a user