영화에 대한 정보 목록을 만들기 위해 Flutter를 사용하고 있습니다. 이제 왼쪽의 표지 이미지가 둥근 모서리 그림이되기를 원합니다. 다음을 수행했지만 작동하지 않았습니다. 감사!
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,
);
}
다음과 같이
이 방법이 작동하지 않는 이유를 알아 냈습니까?
—
Martin