Flutter 圆角头象的几种设置方法

4 min read
CircleAvatar(
    backgroundColor: Colors.transparent,
    child: SizedBox(
      width: 60,
      height: 60,
      child: ClipOval(
        child: Image.asset("Assets/Images/music_default.png",
      ),
    )
)
ClipOval(
  child: Image.network(
    'https://via.placeholder.com/150',
    width: 100,
    height: 100,
    fit: BoxFit.cover,
  ),
),
Container(
  decoration: BoxDecoration(
    image: DecorationImage(image: AssetImage("assets/images/profile_default.jpeg"),fit: BoxFit.fill),
    color: Colors.white,
    shape: BoxShape.circle,
  ),
)