Reputation: 54
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):
Upvotes: 0
Views: 429
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