Class

BeyondBoundsLayout.LayoutDirection

The direction (from the visible bounds) that a BeyondBoundsLayout is requesting more items to be laid.

Common
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

Common
val Before = LayoutDirection(1)

Direction used in BeyondBoundsLayout.layout to request the layout of extra items before the current bounds.

Common
val After = LayoutDirection(2)

Direction used in BeyondBoundsLayout.layout to request the layout of extra items after the current bounds.

Common
val Left = LayoutDirection(3)

Direction used in BeyondBoundsLayout.layout to request the layout of extra items to the left of the current bounds.

Common
val Right = LayoutDirection(4)

Direction used in BeyondBoundsLayout.layout to request the layout of extra items to the right of the current bounds.

Common
val Above = LayoutDirection(5)

Direction used in BeyondBoundsLayout.layout to request the layout of extra items above the current bounds.

Common
val Below = LayoutDirection(6)

Direction used in BeyondBoundsLayout.layout to request the layout of extra items below the current bounds.