如何更改材质按钮的字体大小…有更好的方法吗?
new MaterialButton( height: 140.0,minWidth: double.infinity,color: Theme.of(context).primaryColor,textColor: Colors.white,child: new Text("material button"),onPressed: () => {},splashColor: Colors.redAccent,),
解决方法
Flutter中的小部件体系结构使这非常简单:MaterialButton的子节点是一个Text小部件,可以使用其style属性设置样式:
new MaterialButton( height: 140.0,child: new Text( "material button",style: new TextStyle( fontSize: 20.0,color: Colors.yellow,);