【发布时间】:2019-12-08 19:39:58
【问题描述】:
我有一个包含多个图标按钮的行,我需要更改它们的颜色和大小。 我设法更改了颜色,但无法更改图标大小。
IconTheme(
data: IconThemeData(size: 48.0, color: Colors.yellow),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
IconButton(
icon: Icon(Icons.delete),
onPressed: () => null,
),
IconButton(
icon: Icon(Icons.file_upload),
onPressed: () => _addPhoto(false),
),
IconButton(
icon: Icon(Icons.camera_alt),
onPressed: () => _addPhoto(true),
),
],
),
),
如果我使用 iconSize 在 IconButtons 中设置大小,它可以工作,但使用 IconTheme 就不行。
我该如何解决?
【问题讨论】:
标签: flutter iconbutton