I\'m trying to create a Card with an Image as a background. The problem is, the Image overflows the Card, so the Corners of the don\'t show up.
I need to either set
You can wrap your image in ClipRRect
ClipRRect
ClipRRect( borderRadius: BorderRadius.vertical(top: Radius.circular(10.0)), child: Image.network(...), )