I have a problem in singleChildScrollView
. Below is my code:
return Scaffold(
body:SingleChildScrollView(
child:
Column(
children:[
//...
Container(height:500,child:listview.builder())
],
//...
)),
);
What I want is to keep on scrolling the children of Column inside the singleChildScrollView
when the items of listview.builder
are ended. Alternatively, I cant even remove the container
(the parent of listview.builder
) it causes rendering error. If the question in not clear, please ask me. I'll explain. Kindly help :(.