如何更改颤振材料按钮的字体大小?
发布时间:2020-12-14 14:56:22 所属栏目:百科 来源:网络整理
导读:如何更改材质按钮的字体大
如何更改材质按钮的字体大小…有更好的方法吗?
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,); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |