Image Scale type center crop on flutter?

后端 未结 4 1033
南方客
南方客 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:58

    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

提交回复
热议问题