我在我的应用中使用listviewbuilder
时收到此错误,这是我的代码
ListView.builder(
padding: const EdgeInsets.all(0),
itemCount: 1,
itemBuilder: (BuildContext context, int index) {
return Scaffold(
body: SafeArea( //and the rest of codes...
答案 0 :(得分:1)
设置错误。
应该是这样
SafeArea(
child: Scaffold(
body:ListView.builder();
),