gpt4 book ai didi

list - 如果它是列表的最后一个索引,如何返回一个小部件?

转载 作者:行者123 更新时间:2023-12-05 08:49:03 25 4
gpt4 key购买 nike

如果它是方法中的最后一项,我想返回一个小部件但我收到一个错误...尝试调用:call()

 itemList.last()
? CircleAvatar(
backgroundColor: mainColor,
radius: 15,
child: Icon(Icons.done),
)
: Container()

最佳答案

假设您正在使用 ListView.builder()

class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
List<String> item = [
'jan',
'feb',
'mar',
'apr',
'may',
'jun',
'jul',
'aug',
'sep',
'oct',
'nov',
'dec'
];
return Scaffold(
body: ListView.builder(
itemCount: item.length,
itemBuilder: (context, index) {
if (index == item.length - 1) {
return ListTile(
leading: Text('Last index reached'),
);
}
return ListTile(
leading: Text(item[index]),
);
},
),
);
}
}

关于list - 如果它是列表的最后一个索引,如何返回一个小部件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65125926/

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