Problem with Image resizing inside Column Widget in Flutter – Shopify
I have the following code snippet, GridTile( child: Card( elevation: 5, child: Image.network(imageUrl, fit: BoxFit.scaleDown,), ), ), ); producing following output.. But when I add column to my card like this... GridTile( child: Card( elevation: 5, child: Column( children: <Widget>[…