circleImage method
Implementation
Widget circleImage() {
var image = chooseChild();
var ct = Container(
child: image,
alignment: Alignment.center,
width: size,
height: size,
// padding: EdgeInsets.all(5 ), //boarder width
decoration: BoxDecoration(
shape: BoxShape.circle,
color: DSColor.image_circle,
)
);
return ct;
// return Expanded(child: ct);
}