Existe uma forma mais elegante de se editar o tamanho de um botão sem ser usando o Widget Padding, como no código abaixo?
Padding(
padding: const EdgeInsets.fromLTRB(128.0, 8.0, 128.0, 8.0),
child: ElevatedButton(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.add),
Text('Confirm'),
],
),
),
),
Queria saber se consigo fazer a alteração do tamanho diretamente no Widget ElevatedButton, deixando o código mais limpo.
Att.