Merge branch 'release/0.0.3'

This commit is contained in:
bastien
2026-07-09 22:57:22 +02:00
2 changed files with 2 additions and 7 deletions
@@ -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) ...[
+1 -1
View File
@@ -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'