performResize method

  1. @override
void performResize()
override

Updates the render objects size using only the constraints.

Do not call this function directly: call layout instead. This function is called by layout when there is actually work to be done by this render object during layout. The layout constraints provided by your parent are available via the constraints getter.

This function is called only if sizedByParent is true.

By default this method sets size to the result of computeDryLayout called with the current constraints. Instead of overriding this method, consider overriding computeDryLayout.

Implementation

@override
void performResize() {
  // default behavior for subclasses that have sizedByParent = true
  size = computeDryLayout(constraints);
  assert(size.isFinite);
}