Flutter do tamanho elevado do botão
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: const Size(200, 50),
maximumSize: const Size(200, 50),
),
onPressed: () {},
child: Text('ElevatedButton')),
Flutter Guy