Flutter如何监听listView/pageView/Singlechild/gridView等滚动视图滚动开始/滚动完成 假如世界没有猫 2024-03-24 78 阅读1分钟 NotificationListener( onNotification: (ScrollNotification notification) { if (notification is ScrollEndNotification) { ///监听滚动完成后执行我们想要的处理逻辑 ///ScrollStartNotification } return false; }, child:ListView() })///这里添加我们想要的滚动视图