【发布时间】:2021-03-25 18:25:35
【问题描述】:
Flutter 升级后“FlatButton”被弃用,我必须改用 TextButton。我没有找到具有宽度和高度的新按钮类型的解决方案。
这是我工作的 FlatButton。如何使用 textButton 或提升按钮解决?
_buttonPreview(double _height, double _width) {
return FlatButton(
onPressed: () { },
height: _height,
minWidth: _width,
color: Colors.grey,
padding: EdgeInsets.all(0),
child: Text(
"some text",
style: TextStyle(color: Colors.white),
),
);
}
【问题讨论】:
标签: flutter deprecated flatbutton