I have a widget tree like this:
SingleChildScrollView Column Container ListView(or GridView)
the problem is that when my wid
Set primary to false in your ListView.
primary
false
ListView
ListView( primary: false, ),
That should prevent it from scrolling separately.