Я пишу мобильное приложение во Flutter + Dart и могу отобразить информацию об учетной записи пользователя, но застрял на том, как l oop просмотреть список, чтобы заполнить и отобразить таблицу с объектами в этом списке. , прямо под информацией учетной записи пользователя.
Вот мой «Контейнер», я sh не должен использовать индексы типа videos.removeAt(0)
и каким-то образом l oop через все videos
для заполнения таблицы.
Widget build(BuildContext context) {
List<Video> videos = Video.getVideosFromJson(jsonDecode(json));
return Container(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Text('Account Info for ' + customer.firstName + ' ' + customer.lastName),
Container(
child: Padding(
padding: const EdgeInsets.all(14.0),
//TODO: HERE IS THE TABLE, I WISH TO DUPLICATE THESE ROWS FOR EACH "VIDEO" IN "List<Video> videos"
child: Table(
border: TableBorder.all(width: 1.0, color: Colors.black),
children: [
TableRow(children: [
TableCell(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
new Text('VideoId'),
new Text(videos.removeAt(0).id.toString()),
],
),
)
]),
TableRow(children: [
TableCell(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
new Text('Video Price'),
new Text(videos.removeAt(0).total.toString()),
],
),
)
]),
]
)
)
)
]
)
);
Как лучше всего go решить эту проблему?