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
If you don't want to use CircleAvatar, here is how you can do it.
ClipOval( child: Image.network( 'https://via.placeholder.com/150', width: 100, height: 100, fit: BoxFit.cover, ), ),