我正在尝试设置IconButton
的背景颜色
这是我的代码
ClipOval(
child: Container(
height: 50.0,
width: 50.0,
color: Colors.white,
child: IconButton(
color: Colors.green.withOpacity(0.8),
iconSize: 50.0,
icon: Icon(Icons.add_circle),
这是结果
如何使椭圆形Container
和IconButton
的大小相同并且全部居中?