Intégration fonctionnalites V1

This commit is contained in:
bastien
2026-07-04 22:46:14 +02:00
parent bf191d6396
commit 9f352b91d2
25 changed files with 779 additions and 184 deletions
+6
View File
@@ -9,6 +9,7 @@ import '../../features/auth/presentation/splash_screen.dart';
import '../../features/home/presentation/home_screen.dart';
import '../../features/establishments/presentation/establishment_detail_screen.dart';
import '../../features/wallet/presentation/wallet_screen.dart';
import '../../features/wallet/presentation/wallet_top_up_screen.dart';
import '../../features/booking/presentation/booking_modify_screen.dart';
import '../../features/booking/presentation/bookings_screen.dart';
import '../../features/machines/presentation/machine_action_screen.dart';
@@ -25,6 +26,7 @@ abstract final class AppRoutes {
static const register = '/register';
static const home = '/';
static const wallet = '/wallet';
static const walletTopUp = '/wallet/top-up';
static const bookings = '/bookings';
static const washes = '/washes';
static const washScan = '/washes/scan';
@@ -118,6 +120,10 @@ final appRouterProvider = Provider<GoRouter>((ref) {
path: AppRoutes.washScan,
builder: (context, state) => const QrScannerScreen(),
),
GoRoute(
path: AppRoutes.walletTopUp,
builder: (context, state) => const WalletTopUpScreen(),
),
GoRoute(
path: '/machines/:uuid/action',
builder: (context, state) {