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
In this case you can use :
CircleAvatar( radius: 50.0, backgroundImage: NetworkImage("https://www.rd.com/wp-content/uploads/2017/09/01-shutterstock_476340928-Irina-Bg-1024x683.jpg"), )
or
CircleAvatar( radius: 50.0, backgroundImage: AssetImage("assets/images/profile.jpg"), )
working correctly...