【发布时间】:2020-08-06 09:03:33
【问题描述】:
这是 API 响应
[
{
"building_name": "Burj Khalifa",
"unit_number": "101",
"unit_type": "flat",
"sub_type": "1bhk",
"unit_space": "500",
"annual_rent": "25000",
"annual_rent_in_word": "twenty five thousand "
},
{
"building_name": "Burj Khalifa",
"unit_number": "102",
"unit_type": "flat",
"sub_type": "2bhk",
"unit_space": "900",
"annual_rent": "25000",
"annual_rent_in_word": "twenty five thousand "
},
{
"building_name": "alzimar",
"unit_number": "103",
"unit_type": "flat",
"sub_type": "1bhk",
"unit_space": "500",
"annual_rent": "25000",
"annual_rent_in_word": "twenty five thousand "
},
]
- 我想将“building_name”添加到列表中
- 同名不能重复
我试过这种方法,但不起作用
static List<Map<String, String>> choices = <Map<String, String>>[
{
"title": building_name, "id": building_name
},
];
我正在调用这个值
child: Text(choice["title"],),
【问题讨论】:
标签: android ios flutter dart flutter-layout