value class LayoutDirection internal constructor(@Suppress("unused") private val value: Int)
The direction (from the visible bounds) that a BeyondBoundsLayout is requesting more items to be laid.
Companion Object
Properties
val Before = LayoutDirection(1)
Direction used in BeyondBoundsLayout.layout to request the layout of extra items before the current bounds.
val After = LayoutDirection(2)
Direction used in BeyondBoundsLayout.layout to request the layout of extra items after the current bounds.
val Left = LayoutDirection(3)
Direction used in BeyondBoundsLayout.layout to request the layout of extra items to the left of the current bounds.
val Right = LayoutDirection(4)
Direction used in BeyondBoundsLayout.layout to request the layout of extra items to the right of the current bounds.
val Above = LayoutDirection(5)
Direction used in BeyondBoundsLayout.layout to request the layout of extra items above the current bounds.
val Below = LayoutDirection(6)
Direction used in BeyondBoundsLayout.layout to request the layout of extra items below the current bounds.