How to remove scroll glow in Flutter? #28072
Answered
by
sthakrishnakumar
flutterindias
asked this question in
Mobile
-
|
How to remove scroll glow in Flutter? |
Beta Was this translation helpful? Give feedback.
Answered by
sthakrishnakumar
Aug 2, 2022
Replies: 1 comment 1 reply
-
|
Hello @flutterindias , OR NotificationListener( Hope this would help you |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
flutterindias
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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