FlexTableSize class final

Table size mode that distributes available space using flex factors.

Similar to Flutter's Flexible widget, allocates space proportionally based on the flex value. Used for responsive column/row sizing.

Example:

FlexTableSize(flex: 2.0, fit: FlexFit.tight)
Inheritance

Constructors

FlexTableSize({double flex = 1, FlexFit fit = FlexFit.tight})
Creates a FlexTableSize.
const

Properties

fit FlexFit
How the space should be allocated. Defaults to tight.
final
flex double
Flex factor for space distribution. Defaults to 1.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited