hasTightFlexHeight property

bool get hasTightFlexHeight

Indicates whether any row uses tight flex sizing.

Tight flex items must occupy their full flex allocation. This getter returns true if at least one row has a tight flex constraint (FlexFit.tight), which affects how remaining space is distributed.

Throws AssertionError if called before layout is complete.

Returns true if table has tight flex height rows, false otherwise.

Implementation

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