我正在尝试通过迭代列表来创建 ListView,但出现此错误:
包:flutter/src/material/list_tile.dart':断言失败:第 1002 行 pos 12:'color != null || 上下文!= null':不正确。
我该如何解决这个问题?这是我的代码:
ListView(
children: ListTile.divideTiles(
tiles: _people.map((item) => ListTile(
leading: CircleAvatar(
backgroundColor: Colors.amber,
child: Text(item['id'].toString()),
),
title: Text(item['name']),
subtitle: Text(item['descrip']),
trailing: IconButton(
icon: Icon(Icons.delete),
onPressed: () {},
),
))).toList()));