मैं फिल्मों के बारे में जानकारी की एक सूची बनाने के लिए स्पंदन का उपयोग कर रहा हूं। अब मैं चाहता हूं कि बाईं ओर कवर छवि एक गोल कोनों वाली तस्वीर हो। मैंने निम्नलिखित कार्य किया, लेकिन यह काम नहीं किया। धन्यवाद!
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,
);
}
निम्नलिखित नुसार