Flutter之ClipRect组件
2019-03-27 本文已影响0人
习惯了_就好
/**
* 矩形裁剪
* ClipRect({
* Key key,
* this.clipper,
* this.clipBehavior = Clip.hardEdge,
* Widget child })
*/
body: Center(
child: ClipRect(
child: Image.asset(
"images/app.png",
width: 100.0,
height: 100.0,
fit: BoxFit.cover,
),
),
)