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
You can also use CircleAvatar, which comes with flutter
CircleAvatar
CircleAvatar( radius: 20, backgroundImage: NetworkImage('https://via.placeholder.com/140x100') )