I am trying to retrieve bunch of images from an api. I want the images to be displayed in Circular form so I am using CircleAvatar Widget, but I keep getting im
CircleAvatar
Use combination of width/height, fit and wrap image in ClipOval like below:
width/height
fit
ClipOval
CircleAvatar( child: ClipOval( child: Image.network( _photo, width: 120, fit: BoxFit.fill ), ), radius: 50, ),