Image Center Circle In Flutter :

Card( shape: roundedRectangle, child: ClipRRect( borderRadius: BorderRadius.all(Radius.circular(12)), child: Image.network( food.image, fit: BoxFit.fill, height: 100, loadingBuilder: (context, Widget child, ImageChunkEvent progress) { if (progress == null) return child; return Padding( padding: EdgeInsets.all(32), child: CircularProgressIndicator( value: progress.expectedTotalBytes != null ? progress.cumulativeBytesLoaded / progress.expectedTotalBytes : null, )); }, ), ), )