applyParentOffset method

void applyParentOffset(
  1. Offset offset
)
inherited

Allow a parent container to move this Container after layout.

Override if parent move needs to propagate to internals of this Container.

Implementation

void applyParentOffset(ui.Offset offset) {
  this.offset += offset;
}