DEV Community

Discussion on: Let's Create A Circle Image (Avatar) With A Border In Flutter

Collapse
 
yunweneric profile image
Yunwen Eric

I came through something similar like this.

Here is my approach.

CircleAvatar(
radius: 40.0,
backgroundColor: Style.greenColor,
child: CircleAvatar(
radius: 36.0,
backgroundImage: AssetImage(
'assets/images/ejaraLauncherIcon.jpg',
),
),
)