I\'m trying to do something similar to centerCrop property from android ImageView. Setting the height of the imageview, and making it crop and align to center, just as centerCro
new Column( crossAxisAlignment: CrossAxisAlignment.stretch, mainAxisSize: MainAxisSize.max, children: [ new Expanded(child: new Image.network( cover.img,fit: BoxFit.fitWidth, ), ), Text(cover.name), ] )
this works for me