Creates a widget that defers its building until layout.
The builder argument must not be null.
Source
LayoutBuilder({
Key key,
@required this.builder
}) : super(key: key) {
assert(builder != null);
}
Creates a widget that defers its building until layout.
The builder argument must not be null.
LayoutBuilder({
Key key,
@required this.builder
}) : super(key: key) {
assert(builder != null);
}