/**
* 圆形裁剪
* ClipOval({
* Key key,
* this.clipper, //裁剪路径
* this.clipBehavior = Clip.antiAlias,
* Widget child
* })
*/
body: Center(
child: ClipOval(
child: Image.asset(
"images/app.png",
width: 100.0,
height: 100.0,
fit: BoxFit.cover,
),
),
)
网友评论