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
Android ScaleType and BoxFit should match like this:
So you should use Cover to achieve the CENTER_CROP result.
EDIT:
The problem should be crossAxisAlignment of the Column widget. Setting this property to crossAxisAlignment: CrossAxisAlignment.stretch should fix your issue.