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
For image use this
ClipOval( child: Image.network( 'https://url to your image', fit: BoxFit.fill, ), );
While for Asset Image use this
ClipOval( child: Image.asset( 'Path to your image', fit: BoxFit.cover, ), )