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
user decoration Image for a container.
@override Widget build(BuildContext context) { final alucard = Container( decoration: new BoxDecoration( borderRadius: BorderRadius.circular(10), image: new DecorationImage( image: new AssetImage("images/logo.png"), fit: BoxFit.fill, ) ) );