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
CircleAvatar( radius: 26, backgroundColor: Colors.white, child: ClipOval( child: _bytesImage == null ? new Text('No image value.') : Image.memory( _bytesImage, width: 60, height: 60, fit: BoxFit.cover, ), ), ),