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
Use ClipRRect it will resolve your problem.
ClipRRect( borderRadius: BorderRadius.all(Radius.circular(10.0)), child: Image.network( Constant.SERVER_LINK + model.userProfilePic, fit: BoxFit.cover, ), ),