propagateSize method

void propagateSize()
inherited

Implementation

void propagateSize() {
  // add option for this.
  if (artboard == this) {
    return;
  }
  forEachChild((child) {
    if (child is LayoutComponent) {
      return false;
    }
    if (child is Sizable) {
      (child as Sizable).controlSize(_layoutSize);
    }
    return true;
  });
}