Flutter 颤振列表视图边界飞溅颜色

Flutter 颤振列表视图边界飞溅颜色,flutter,Flutter,有没有一种方法可以设置当您试图滚动到ListView的末尾时显示的初始颜色 默认为蓝色(在屏幕底部): 有关更多信息,请查看此项 ScrollConfiguration( behavior: ScrollBehavior(), // From this behaviour you can change the behaviour child: GlowingOverscrollIndicator( axisDir

有没有一种方法可以设置当您试图滚动到ListView的末尾时显示的初始颜色

默认为蓝色(在屏幕底部):

有关更多信息,请查看此项

ScrollConfiguration(
            behavior: ScrollBehavior(),   // From this behaviour you can change the behaviour 
            child: GlowingOverscrollIndicator(
              axisDirection: AxisDirection.down, 
              color: Colors.yellow,    // You can change your splash color
              child: ListView.builder(
                  .....
              ),
            ),
          );