Ich verwende Flutter, um eine Liste mit Informationen zu Filmen zu erstellen. Jetzt möchte ich, dass das Titelbild links ein Bild mit abgerundeten Ecken ist. Ich habe folgendes getan, aber es hat nicht funktioniert. Vielen Dank!
getItem(var subject) {
var row = Container(
margin: EdgeInsets.all(8.0),
child: Row(
children: <Widget>[
Container(
width: 100.0,
height: 150.0,
decoration: BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(8.0)),
color: Colors.redAccent,
),
child: Image.network(
subject['images']['large'],
height: 150.0,
width: 100.0,
),
),
],
),
);
return Card(
color: Colors.blueGrey,
child: row,
);
}
wie folgt
fit: BoxFit.fill
, es sieht ziemlich gut aus.