Flutter如何监听listView/pageView/Singlechild/gridView等滚动视图滚动开始/滚动完成

78 阅读1分钟

NotificationListener(
onNotification: (ScrollNotification notification) {
if (notification is ScrollEndNotification) {
///监听滚动完成后执行我们想要的处理逻辑
///ScrollStartNotification }
return false;
},
child:ListView() })///这里添加我们想要的滚动视图