getIntrinsicHeight method

  1. @override
int getIntrinsicHeight(
  1. int width
)
override

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

Implementation

@override
int getIntrinsicHeight(int width) {
  final rootContext = StatelessElement(this)..mount(null);
  final h = rootContext.childElement?.widget.getIntrinsicHeight(width) ?? 0;
  rootContext.unmount();
  return h;
}