From d42163f12f8828c47f6ac3aec7079a5a1c23323e Mon Sep 17 00:00:00 2001 From: bastien Date: Thu, 9 Jul 2026 22:57:07 +0200 Subject: [PATCH] Maj dashboard --- lib/features/home/presentation/home_screen.dart | 7 +------ pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/lib/features/home/presentation/home_screen.dart b/lib/features/home/presentation/home_screen.dart index b5ecb8d..0e2d821 100644 --- a/lib/features/home/presentation/home_screen.dart +++ b/lib/features/home/presentation/home_screen.dart @@ -60,14 +60,9 @@ class HomeScreen extends ConsumerWidget { padding: const EdgeInsets.fromLTRB(16, 8, 16, 24), children: [ Text( - user?.firstName != null ? 'Bonjour ${user!.firstName} 👋' : 'Bienvenue', + user?.firstName != null ? 'Bonjour ${user!.firstName}' : 'Bienvenue', style: Theme.of(context).textTheme.headlineMedium?.copyWith(fontSize: 20), ), - const SizedBox(height: 4), - Text( - 'Votre laverie, dans votre poche.', - style: Theme.of(context).textTheme.bodyMedium, - ), const SizedBox(height: 16), const QuickActionsRow(), if (activeWash != null) ...[ diff --git a/pubspec.yaml b/pubspec.yaml index b1f3c0f..e1c9ea1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: > Application mobile native Laverie Connectée (Android + iOS). Pas de cible web Flutter — Android en priorité, iOS préparé. publish_to: 'none' -version: 0.0.2 +version: 0.0.3 environment: sdk: '>=3.2.0 <4.0.0'