Skip to content
Discussion options

You must be logged in to vote

Hello @flutterindias ,
You can use BouncingScrollPhysics() in the physics property of the Listview wherever you want to remove the glow.
ListView(
physics: BouncingScrollPhysics(),
)

OR
you can Wrap the Widget as

NotificationListener(
onNotification: (overscroll) {
overscroll.disallowGlow();
},
child: ListView(
//Your code snippets
),
),

Hope this would help you

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@flutterindias
Comment options

Answer selected by flutterindias
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Mobile
Labels
Product Feedback Share your thoughts and suggestions on GitHub features and improvements
2 participants