layoutChildren method

  1. @override
void layoutChildren()
override

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();
}