circular image flutter code example
Example 1: circle container flutter
Container(
height: 300,
width: 300,
decoration: BoxDecoration(
border: Border.all(
color: Colors.red[500],
),
shape: BoxShape.circle,
),
child: ...,
),
Example 2: Flutter give image rounded corners
ClipRRect(
borderRadius: BorderRadius.circular(8.0),
child: Image.network(
subject['images']['large'],
height: 150.0,
width: 100.0,
),
)