getIntrinsicWidth method
Computes the intrinsic width of this widget under the given height constraint.
Implementation
@override
int getIntrinsicWidth(int height) {
var maxW = 0;
for (final child in children) {
final w = child.getIntrinsicWidth(height);
if (w > maxW) maxW = w;
}
return maxW;
}