Swift
Swift

Reputation: 54

Flutter ListView Boundary Splash Color

Is there a way to set the splash color that appears when you try to scroll past the end of a ListView?

It defaults to this blue color (at bottom of screen):

enter image description here

Upvotes: 0

Views: 429

Answers (1)

Shubham Narkhede
Shubham Narkhede

Reputation: 2130

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(
                  .....
              ),
            ),
          );

FOr more information you can check this official docs

Upvotes: 1

Related Questions