How to resizing an Icon / Icon Button in Flutter?

后端 未结 4 1145
情书的邮戳
情书的邮戳 2021-01-17 11:27

I have 2 questions.

  1. how to scale our icon ? I mean not a default icon from Flutter. but when you change into an Image. I have an Icon Button with an image like
4条回答
  •  不知归路
    2021-01-17 12:18

    You can use size property for Icon.

    Icon(
      Icons.radio_button_checked,
      size: 12,
    ),
    

    And for IconButton you can use

    Transform.scale(
      scale: 0.5,
      child: IconButton(
        onPressed: (){},
        icon: new Image.asset("images/IG.png"),
      ),
    ),
    

提交回复
热议问题