I am using Flutter to make a list of information about movies. Now I want the cover image on the left to be a rounded corners picture. I did the following, but it didn’t wor
Using ClipRRect you need to hardcode BorderRadius, so if you need complete circular stuff, use ClipOval instead.
ClipRRect
BorderRadius
ClipOval
ClipOval( child: Image.network( "image_url", height: 100, width: 100, fit: BoxFit.cover, ), ),