I\'m using Flutter version 1.12.13+hotfix.
I\'m looking for a solution to be able to scroll inside a ListView and when reached the bottom, automatically give scroll
Usually when I come across an issue like this, I use SingleChildScrollView
with a column
as the child, and then whatever I want as the children of that column. Here's some demo code.
SingleChildScrollView
(
child: Column
(
children:
[
/* Your content goes here. */
]
)
)
Let me know if that fits your use case