Let\'s say I have a rectangular, portrait image:
I\'d like to crop it, such that it\'s rendered like this:
How can I do this in Flutter?
You can also directly use the Image class with BoxFit and do something like:
new Image.asset( stringToImageLocation, fit: BoxFit.cover, )