Search code examples
fluttericonssize

flutter ImageIcon change size


I have this ImageIcon:

            Container(
            color: Colors.yellow,
            padding: const EdgeInsets.all(0.0),
            child: ImageIcon(AssetImage("assets/images/group.png"), size: 50,))

I get this: enter image description here

How can I make the icon take all the space available?


Solution

  • Use FittedBox for stretch icon.

    Container(
      height: 50,
      width: 50,
      child: FittedBox(
                fit: BoxFit.cover,
                child: ImageIcon(AssetImage("assets/icon/camera.png"))),)