customers

This commit is contained in:
2026-04-10 11:11:55 +02:00
parent 8d6e8647b1
commit 810d99626a
6 changed files with 427 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flux/core/blocs/session/session_bloc.dart';
import 'package:flux/core/theme/theme.dart';
import 'package:flux/features/customers/ui/customers_content.dart';
import 'dashboard_content.dart'; // Importiamo il contenuto della dashboard
class HomeScreen extends StatefulWidget {
@@ -120,7 +121,7 @@ class _HomeScreenState extends State<HomeScreen> {
case 0:
return DashboardContent(isLargeScreen: isLargeScreen);
case 1:
return const Center(child: Text('Pagina Clienti (Coming Soon)'));
return const CustomersContent();
case 2:
return const Center(child: Text('Pagina Operazioni (Coming Soon)'));
default: