parent
a6c473ea95
commit
e667b3c097
@ -272,8 +272,10 @@ abstract class OneChildRenderObjectWidget extends RenderObjectWidget {
|
|||||||
/// storage for that child list, it doesn't actually provide the updating
|
/// storage for that child list, it doesn't actually provide the updating
|
||||||
/// logic.)
|
/// logic.)
|
||||||
abstract class MultiChildRenderObjectWidget extends RenderObjectWidget {
|
abstract class MultiChildRenderObjectWidget extends RenderObjectWidget {
|
||||||
const MultiChildRenderObjectWidget({ Key key, this.children })
|
MultiChildRenderObjectWidget({ Key key, this.children })
|
||||||
: super(key: key);
|
: super(key: key) {
|
||||||
|
assert(!children.any((Widget child) => child == null));
|
||||||
|
}
|
||||||
|
|
||||||
final List<Widget> children;
|
final List<Widget> children;
|
||||||
|
|
||||||
|
@ -384,7 +384,9 @@ class Block extends StatelessComponent {
|
|||||||
this.initialScrollOffset,
|
this.initialScrollOffset,
|
||||||
this.scrollDirection: ScrollDirection.vertical,
|
this.scrollDirection: ScrollDirection.vertical,
|
||||||
this.onScroll
|
this.onScroll
|
||||||
}) : super(key: key);
|
}) : super(key: key) {
|
||||||
|
assert(!children.any((Widget child) => child == null));
|
||||||
|
}
|
||||||
|
|
||||||
final List<Widget> children;
|
final List<Widget> children;
|
||||||
final double initialScrollOffset;
|
final double initialScrollOffset;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user