new Expanded( child: new ListView( ..... ) );
+++++++++++++++
可以通过指定shrinkWrap = true
为了你ListView
。
ListView( shrinkWrap: true, children... )
异常消息中说明了这一点。原因也在异常消息中说明。
在这个具体的案例中,我不确定哪一个Widget
在树中造成这一点,但我认为它是不相关的。我不知道你的Container
关于ListView
是关于。我会先把它包在Column
,但是shrinkWrap
应该能行。
self:
Flexible(
child:ListView…..
)