computeMinIntrinsicWidth method

  1. @override
double computeMinIntrinsicWidth(
  1. double height
)
override

INTRINSIC SIZES

Implementation

@override
double computeMinIntrinsicWidth(double height) {
  var width = 0.0;
  for (final box in children) {
    width += box.getMinIntrinsicWidth(double.infinity);
  }
  return width;
}