layoutChildren method

  1. @protected
void layoutChildren()

布局 children 集合列表

Implementation

@protected
void layoutChildren() {
  final defaultChildConstraints = this.defaultChildConstraints;
  for (final child in renderBoxMap.values) {
    child.layout(defaultChildConstraints);
  }
}