どうも、ちょげ(@chogetarou)です。
MaterialButtonのパディングを設定する方法を紹介します。
方法

MaterialButtonのパディングを設定するには、引数「padding」を使います。
MaterialButtonの引数「padding」に、EdgeInsetsクラスを指定することで、パディングを設定できます。
child: MaterialButton(
padding: EdgeInsets.all(50), //パディング
color: Colors.blue,
textColor: Colors.white,
child: Text('Button'),
onPressed: () {},
),

コメント