fix(frontend): Correction erreurs syntaxe Step3
- Ajout virgules manquantes après SizedBox Ticket #38
This commit is contained in:
parent
8ffe5d27ea
commit
5364b56176
@ -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',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user