当前位置: 首页 > 工具软件 > IconButton > 使用案例 >

flutter - 如何在Flutter中调整IconButton的大小(高度和宽度)

仲孙钊
2023-12-01

如何在Flutter中调整IconButton的大小(高度和宽度)?似乎需要默认的宽度和高度。没有height或width属性。

new IconButton(
    padding: new EdgeInsets.all(0.0),
    color: themeData.primaryColor,
    icon: new Icon(Icons.clear, size: 18.0),
    onPressed: onDelete,
)

您可以使用SizedBox强制其自行调整大小。

new SizedBox(
   height: 18.0,
   width: 18.0,
   child: new IconButton(
      padding: new EdgeInsets.all(0.0),
      color: themeData.primaryColor,
      icon: new Icon(Icons.clear, size: 18.0),
      onPressed: onDelete,
   )
)

 

 类似资料: