I'm trying to customize a Flutter button:
ButtonTheme(
child: FlatButton(
child: Text(_text),
color: _color,
onPressed: _onPressed,
),
minWidth: 40,
),
But I can't get rid of the extra top and bottom padding:
FlatButton
, RaisedButton
, MaterialButton
, all of them have the padding.
NOTE: I have more customizations, such as padding, text trimming, and border-radius.