Image Scale type center crop on flutter?

后端 未结 4 1032
南方客
南方客 2021-02-05 05:31

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

4条回答
  •  误落风尘
    2021-02-05 05:49

    Please add this following width and height to the image

    Note: We are zooming the image

    height: double.infinity, 
    width: double.infinity,`
    

提交回复
热议问题