no_scroll_glow

Last updated:

0 purchases

no_scroll_glow Image
no_scroll_glow Images
Add to Cart

Description:

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

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.