Flutter实现圆形图片+描边

目前手机应用中,圆形图片是很常见的设计

在flutter中实现圆角是非常方便的

 Container(
                width: 300,
                height: 300,
                decoration: BoxDecoration(
                    border: Border.all(width: 3, color: Colors.red),
                    borderRadius: const BorderRadius.all(Radius.circular(150)),
                    image: const DecorationImage(
                      image: AssetImage("images/img1.jpg"),
)))

image

posted on 2022-10-30 22:33  快乐海盗  阅读(379)  评论(0编辑  收藏  举报