gpt4 book ai didi

flutter - 元素类型 'Set' 不能分配给列表类型 'Widget'

转载 作者:行者123 更新时间:2023-12-03 02:55:56 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How do I use collection for-loops in Flutter?

(2 个回答)


1年前关闭。




使用以下代码,我尝试添加一个新的 Text每个玩家的小部件:

Widget build(BuildContext context) {
return Container(
child: Row(children: [
Column(
children: [
for (var player in _players) {Text(player.name)}
],
)
]));
}

这会导致以下错误:

The element type 'Set' can't be assigned to the list type 'Widget'.



我究竟做错了什么?

最佳答案

您正在创建 Set使用花括号 ( set literal )。您的构建函数应如下所示:

Widget build(BuildContext context) {
return Container(
child: Row(children: [
Column(
children: [
for (var player in _players) Text(player.name)
],
)
]));
}

关于flutter - 元素类型 'Set<Text>' 不能分配给列表类型 'Widget',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58471237/

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