AutoPlacement class

Controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.

Properties

hashCode int
The hash code for this object.
no setterinherited
packing AutoPlacementPacking
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
trackType TrackType
final

Methods

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

Operators

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

Constants

columnDense → const AutoPlacement
Items are placed by filling each column in turn, attempting to fill in holes earlier in the grid, if smaller items come up later, adding columns as necessary. This may cause items to appear out-of-order, when doing so would fill in holes left by larger items.
columnSparse → const AutoPlacement
Items are placed by filling each column in turn, adding new columns as necessary.
rowDense → const AutoPlacement
Items are placed by filling each row in turn, attempting to fill in holes earlier in the grid, if smaller items come up later, adding rows as necessary. This may cause items to appear out-of-order, when doing so would fill in holes left by larger items.
rowSparse → const AutoPlacement
Items are placed by filling each row in turn, adding new rows as necessary. If neither row nor column is provided, row is assumed.
values → const List<AutoPlacement>
The list of all available AutoPlacement values