getIntrinsicWidth method

  1. @override
int getIntrinsicWidth(
  1. int height
)
override

Computes the intrinsic width of this widget under the given height constraint.

Implementation

@override
int getIntrinsicWidth(int height) {
  if (width != null) return width!;
  if (child != null) {
    return child!.getIntrinsicWidth(this.height ?? height);
  }
  return 0;
}