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
Try This it works well.
Container( height: 220.0, width: double.infinity, decoration: BoxDecoration( borderRadius: new BorderRadius.only( topLeft: Radius.circular(10), topRight: Radius.circular(10), ), image: DecorationImage( fit: BoxFit.fill, image: NetworkImage( photoUrl, ), ), ), );