I have a widget tree like this:
SingleChildScrollView
Column
Container
ListView(or GridView)
the problem is that when my widget tree is like above, it gives me error of
NEEDS PAINT
so I change my widget tree like this:
Column
Container
ListView(or GridView)
but in this situation the ListView or GridView part scrolls separately, and I want the whole widget tree to scroll. how do you think I can achieve it?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…