minIntrinsicWidth method

double minIntrinsicWidth(
  1. double height
)

Override to change the minimum width that this box could be without failing to correctly paint its contents within itself, without clipping.

See also:

Implementation

double minIntrinsicWidth(double height) {
  assert(() {
    if (!RenderObject.debugCheckingIntrinsics) {
      throw FlutterError(
          'Something tried to get the minimum intrinsic width of the boxy delegate $this.\n'
          'You must override minIntrinsicWidth to use the intrinsic width.');
    }
    return true;
  }());
  return 0.0;
}