Pure helpers for splitting terminal frame areas.
Length constraints are allocated first, followed by percentages and fills. If requests exceed the available space, later allocations are clipped. Weighted-fill rounding remainders are assigned deterministically in declaration order.
Properties
- 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
Static Methods
-
horizontal(
FrameArea area, List< FrameConstraint> constraints, {int gap = 0, FrameInsets insets = const FrameInsets()}) → List<FrameArea> -
Splits
areainto left-to-right columns. -
split(
FrameArea area, List< FrameConstraint> constraints, {required FrameAxis axis, int gap = 0, FrameInsets insets = const FrameInsets()}) → List<FrameArea> -
Splits
areaalongaxis. -
vertical(
FrameArea area, List< FrameConstraint> constraints, {int gap = 0, FrameInsets insets = const FrameInsets()}) → List<FrameArea> -
Splits
areainto top-to-bottom rows.