From 5364b561766712b36758b3fb1d2add27549ce0b8 Mon Sep 17 00:00:00 2001 From: Julien Martin Date: Tue, 2 Dec 2025 15:58:42 +0100 Subject: [PATCH] fix(frontend): Correction erreurs syntaxe Step3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ajout virgules manquantes après SizedBox Ticket #38 --- frontend/lib/screens/auth/parent_register_step3_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/lib/screens/auth/parent_register_step3_screen.dart b/frontend/lib/screens/auth/parent_register_step3_screen.dart index 1e70f2a..f26b3c6 100644 --- a/frontend/lib/screens/auth/parent_register_step3_screen.dart +++ b/frontend/lib/screens/auth/parent_register_step3_screen.dart @@ -416,7 +416,7 @@ class _ChildCardWidgetState extends State<_ChildCardWidget> { Switch(value: widget.childData.isUnbornChild, onChanged: widget.onToggleIsUnborn, activeColor: Theme.of(context).primaryColor), ], ), - const SizedBox(height: 6.0 * 1.1) + const SizedBox(height: 6.0 * 1.1), CustomAppTextField( controller: _firstNameController, labelText: 'Prénom', @@ -453,7 +453,7 @@ class _ChildCardWidgetState extends State<_ChildCardWidget> { Text('Garçon', style: GoogleFonts.merienda(fontSize: 16 * 1.1)), ], ), - const SizedBox(height: 6.0 * 1.1) + const SizedBox(height: 6.0 * 1.1), CustomAppTextField( controller: _dobController, labelText: widget.childData.isUnbornChild ? 'Date prévisionnelle de naissance' : 'Date de naissance',