本文介绍了当您一直滚动到ListView.builder的顶部时,如何禁用动画的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在我的flutter应用程序中列出一个列表。但是,每次我一直滚动到顶部时,都会显示以下动画:

I'm trying to make a list on my flutter app. But, Every time I scroll all the way to the top there is this animation showing up like this:


一种隐藏此动画的方法?

Is there a way to hide this animation?

推荐答案

NotificationListener<OverscrollIndicatorNotification>(
    onNotification: (OverscrollIndicatorNotification overscroll) {
      overscroll.disallowGlow();
    },
    child: ListView.builder(...));

作为说

这篇关于当您一直滚动到ListView.builder的顶部时,如何禁用动画的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 01:15