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
I had the same problem. Using clipoval in circle avatar will make it elliptical. But this fixed this issue.
CircleAvatar( radius:25.0, backgroundImage: NetworkImage( '${image_url}', ), backgroundColor: Colors.blue, ),