I used two listView inside listview,when i put the overall listview inside the pageview, the pageview is not scrolable
CodePudding user response:
Instead of using Listviews inside each other, I suggest you to use a GridView
. I think your ListView
s have different directions. If they do, GridView
s will help you.
Other solution, if you insist on using ListView
, then wrap the ListView
s with ConstrainedBox
then give them BoxConstraints
ConstrainedBox(
constraints: BoxConstraints(maxHeight: 100, maxWidth: 200)
child: ListView(),
)
You should adjust maxHeight
and maxWidth
in the proper size.
Hope this helps.
CodePudding user response:
it looks like you are looking for sliverlist
or sliver tool