layoutChildren method
Sets the size of this LinearLayoutComponent, then lays out the children along both main and cross axes.
Implementation
@override
void layoutChildren() {
if (shrinkWrapMode) {
size = null;
}
_layoutMainAxis();
_layoutCrossAxis();
}