This commit is contained in:
jantunesmesias 2024-08-09 12:59:03 -03:00
parent 60a56db446
commit 72f44dd41b
1 changed files with 6 additions and 4 deletions

View File

@ -271,10 +271,12 @@ class _VisitRequestTemplateComponentWidgetState
), ),
SizedBox(height: MediaQuery.of(context).size.height * 0.02), SizedBox(height: MediaQuery.of(context).size.height * 0.02),
if (widget.buttons.isNotEmpty) if (widget.buttons.isNotEmpty)
Row( const SizedBox(
mainAxisAlignment: MainAxisAlignment.spaceEvenly, height: 16), // Adicione este SizedBox com a altura desejada
children: widget.buttons, Row(
), mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: widget.buttons,
),
], ],
), ),
), ),