Last updated:
0 purchases
no scroll glow
no_scroll_glow #
This scroll behavior is just like android's scroll behavior but without the glow.
how to use
NoScrollGlow(
child: ListView.builder(itemCount: 10000,
itemBuilder: (context, i){
return ListTile(
title: Text('$i'),
);
},
),
),
copied to clipboard
All Scroll decedents of this widget will have No Scroll Glow.
NoScrollGlowBehavior
applying the no scroll glow effect using a ScrollConfiguration Widget
ScrollConfiguration(
behavior: NoScrollGlowBehavior(),
child: ListView(
children: [
/* ... */
],
),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.