我已经尝试了很多使列表可滚动,但它从来没有工作。每次我把它 Package 在一个SingleChildScrollView我的列表就消失了。有人能帮助请
下面是我的代码:
return Scaffold(
body:
SingleChildScrollView(
child: ListView.builder(
itemCount: subjects.length,
itemBuilder: (context, i) {
return singleSubject(
subjects[i],
() => deleteItem(i),
);
},
),
),
floatingActionButton: FloatingActionButton(
backgroundColor: const Color(0xFF383838),
onPressed: newSubject,
child: const Icon(Icons.add),
),
backgroundColor: const Color(0xFFB94844),
);
}
}
1条答案
按热度按时间i7uq4tfw1#
当
ListView
是body
的唯一子项时,不需要使用SingleChildScrollView
。做
查找有关widgets/scrolling的更多信息