gpt4 book ai didi

flutter - 参数类型 'Iterable' 无法分配给参数类型 'List>?'

转载 作者:行者123 更新时间:2023-12-05 03:29:01 24 4
gpt4 key购买 nike

DropdownButton<String>(
value: value,
items: locationItems.map( DropdownMenuItem<String>(
child: Text( widget.locationName ),
value: "${widget.locationName}",
)
),

最佳答案

Map 返回可迭代的。尝试将其转换为列表。

DropdownButton<String>(
value: value,
items: locationItems.map( DropdownMenuItem<String>(
child: Text( widget.locationName ),
value: "${widget.locationName}",
)
).toList<DropdownMenuItem<String>>(),

关于flutter - 参数类型 'Iterable<dynamic>' 无法分配给参数类型 'List<DropdownMenuItem<String>>?',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71090994/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com