mamma mia sistemata rail e bottom navigation, bellissime ora

This commit is contained in:
2026-04-12 21:32:20 +02:00
parent b8caff7636
commit 1a40770390
12 changed files with 655 additions and 154 deletions

View File

@@ -5,6 +5,7 @@ import 'package:flux/features/company/ui/create_company_screen.dart';
import 'package:flux/features/customers/models/customer_model.dart';
import 'package:flux/features/customers/ui/customer_detail_screen.dart';
import 'package:flux/features/home_and_dashboard/ui/home_screen.dart';
import 'package:flux/features/products/ui/products_screen.dart';
import 'package:flux/features/store/ui/create_store_screen.dart';
import 'package:go_router/go_router.dart';
import 'dart:async';
@@ -68,6 +69,11 @@ class AppRouter {
return CustomerDetailScreen(customer: customer);
},
),
GoRoute(
path: '/products',
name: 'products',
builder: (context, state) => const ProductsScreen(),
),
],
);
}