remainingHeight property

double get remainingHeight

Gets the remaining unclaimed height in the table layout.

This represents vertical space not allocated to any row after fixed and flex sizing calculations. Useful for understanding how much space is available for expansion or debugging layout issues.

Throws AssertionError if called before layout is complete.

Returns remaining height in logical pixels as a double.

Implementation

double get remainingHeight {
  assert(_layoutResult != null, 'Layout result is not available');
  return _layoutResult!.remainingHeight;
}