Issue
I have a ListView
with shrinkWrap: true
.
Also, I have applied BouncingScrollPhysics()
to the ListView
The problem is bounce physics only works at the bottom of ListView
. When I scroll to the top, it doesn't show the bounce effect.
Solution
You can try this:
SingleChildScrollView(
physics: BouncingScrollPhysics(parent: AlwaysScrollableScrollPhysics()),
child: Column(...),
)
Answered By - CopsOnRoad
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.