applyConstraints method

void applyConstraints(
  1. BuildContext context
)

Applies constraints to the width, height, left and top.

Implementation

void applyConstraints(BuildContext context) {
  width.value = _applyWidth(context, width.value);
  height.value = _applyHeight(context, height.value);
  left.value = _applyLeft(context, left.value);
  top.value = _applyTop(context, top.value);
}