hasTightFlexWidth property
bool
get
hasTightFlexWidth
Indicates whether any column uses tight flex sizing.
Tight flex items must occupy their full flex allocation. This getter returns true if at least one column 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 width columns, false otherwise.
Implementation
bool get hasTightFlexWidth {
assert(_layoutResult != null, 'Layout result is not available');
return _layoutResult!.hasTightFlexWidth;
}