我正在编写一个包含ListView的简单Flutter应用程序。在教程之后,我的ListView正在使用生成器,如下所示:
ListView myListItems() {
return ListView.builder(
itemCount: count,
itemBuilder: (BuildContext context, int position) {
return Card(
color: Colors.white,
elevation: 2.0,
child: ListTile( // error shows up here
leading: const Icon(Icons.event_seat),
title: const Text('Here is some text'),
)
);
},
);
}
...但显示以下内容的行
“ child:ListTile(”)的括号中有一个错误,上面写着:“预期有1个必需参数,但找到了0个。dart(not_enough_required_arguments)”
知道我缺少什么吗?
答案 0 :(得分:0)
这可能是由于Flutter SDK损坏,因为您的代码正确。
尝试在Flutter SDK文件夹中运行以下命令:
git clean -xfd
git stash save --keep-index
git stash drop
git pull
flutter doctor