본문 바로가기
Flutter/Flutter FAQ

Flutter 플러터에서 IconButton의 크기(높이와 너비)를 조정하는 방법은 무엇인가요?, How to resize (height and width) of an IconButton in Flutter

by 베타코드 2023. 9. 22.
반응형

질문


Flutter에서 IconButton의 크기(높이와 너비)를 조절하는 방법은 무엇인가요? 기본적으로 기본 너비와 높이를 가지는 것 같습니다. 높이나 너비 속성이 없는 것 같습니다.

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

답변


다음과 같이 SizedBox를 사용하여 크기를 지정할 수 있습니다.

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

댓글