My flutter SingleChildScrollingView
widget exposes live logs and can become quite long.
I'd like to provide the user a mean to temporarily freeze the scroll so that he can examine the log. He will then toggle back to scroll when done.
How to do that?
return SingleChildScrollView(
physics: BouncingScrollPhysics(),
padding: EdgeInsets.all(contentPadding),
child: Column(children: [
// blah blah
]
);