Архитектура виджета во Flutter делает это очень простым: дочерний элемент MaterialButton
является виджетом Text
, который можно стилизовать с помощью его свойства style
:
new MaterialButton(
height: 140.0,
minWidth: double.infinity,
color: Theme.of(context).primaryColor,
textColor: Colors.white,
child: new Text(
"material button",
style: new TextStyle(
fontSize: 20.0,
color: Colors.yellow,
),
),
onPressed: () => {},
splashColor: Colors.redAccent,
);