flutter尺寸解惑

前言

最近,笔者在写布局的时候,发现诸如此类的报错:

1
2
Vertical viewport was given unbounded height.
Vertical viewport was given unbounded width.

大概意思就是指没有限定视图的高度,宽度。

Read More

NotificationListener

在widget树中,子widget滚动时会向上发送notification,通过NotificationListener可以监控到该notification。NotificationListener也是一个widget,可以将被监控的widget放入其child内。

Read More