updateLayoutBounds method

void updateLayoutBounds()
inherited

Implementation

void updateLayoutBounds() {
  final layout = layoutNode.layout;
  if (_layoutLocation.dx != layout.left ||
      _layoutLocation.dy != layout.top ||
      _layoutSize.width != layout.width ||
      _layoutSize.height != layout.height) {
    _layoutLocation = Offset(layout.left, layout.top);
    _layoutSize = Size(layout.width, layout.height);
    propagateSize();
    markWorldTransformDirty();
  }
}