getMaxIntrinsicWidth method

double getMaxIntrinsicWidth(
  1. double height
)

Computes the maximum width this box could have for the given height.

Used for intrinsic sizing calculations.

Implementation

double getMaxIntrinsicWidth(double height) {
  final layoutHandle = boxLayout.createLayoutHandle(this);
  return layoutHandle.computeMaxIntrinsicWidth(height);
}