【问题标题】:How to center an Icon in an ElevatedButton?如何使图标在 ElevatedButton 中居中?
【发布时间】:2021-12-16 21:57:38
【问题描述】:
如何使我的图标在 ElevatedButton 小部件中居中?
这是我的代码:
ElevatedButton(
style: ElevatedButton.styleFrom(
shape: CircleBorder(),
primary: itemColor.color),
child: Center(child: Icon(Icons.check, color: Colors.white))
);
【问题讨论】:
标签:
flutter
button
alignment
【解决方案1】:
试试下面的代码希望对你有帮助。
ElevatedButton(
onPressed: () {},
style: ElevatedButton.styleFrom(
shape: CircleBorder(),
),
child: Icon(
Icons.check,
color: Colors.white,
),
),
您的结果屏幕->