background image with rounded corners flutter code example
Example: Flutter give image rounded corners
ClipRRect(
borderRadius: BorderRadius.circular(8.0),
child: Image.network(
subject['images']['large'],
height: 150.0,
width: 100.0,
),
)