BouncingScrollPhysics not working with "shrinkWrap: true"
You can try this:
SingleChildScrollView(
physics: BouncingScrollPhysics(parent: AlwaysScrollableScrollPhysics()),
child: Column(...),
)
BouncingScrollPhysics()
does not always work if the ListView
is not 'full'. For example if the ListView
needs 5 items to fill its view and become scrollable, then the BouncingScrollPhysics()
will probably only work when the ListView
contains 5 or more items.
I had the same problem, I just used physics: AlwaysScrollableScrollPhysics(parent: BouncingScrollPhysics())