Search code examples
imageflutterflutter-image

How to fit an Image to column width in Flutter?


I want to fit a child image to the width of the column father.

Column(
  crossAxisAlignment: CrossAxisAlignment.start,
  children: <Widget>[
    Image.network("Some image url"),
    Text("Fitted image"),
  ],
),

Solution

  • I suggest the following chenges

    Column(
          crossAxisAlignment: CrossAxisAlignment.start,
          children: <Widget>[
            Image.network("Your image url",
              width: double.infinity, 
              fit: BoxFit.fitWidth,
            ),
            Text("Fitted image"),
          ],
        )