🌈 Create new beautiful Compose Gradients with our new wesite ->
Class

TransformingLazyColumnFirstLayoutItemProvider.ItemEdge

Represents the visual edge of ItemInfo (Start or End) to which the offset refers.

Source set: Android
public class ItemEdge internal constructor(internal val type: Int)

Represents the visual edge of ItemInfo (Start or End) to which the offset refers.

Functions

toString

Source set: Android
override fun toString(): String

Members

Companion

Source set: Android
public companion object

Properties

Start

Source set: Android
public val Start: ItemEdge = ItemEdge(0)

The start edge of the item.

For normal layout this will be the visual top edge of the item. For reverseLayout it will be the visual bottom edge.

When requested, TransformingLazyColumn starts laying out items from this edge. For example, during item size animations (such as expansion), the item expands towards the logical end of the list relative to this start edge.

End

Source set: Android
public val End: ItemEdge = ItemEdge(1)

The end edge of the item.

For normal layout this will be the visual bottom edge of the item. For reverseLayout it will be the visual top edge.

When requested, TransformingLazyColumn starts laying out items from this edge. For example, during item size animations (such as expansion), the item expands towards the logical start of the list relative to this end edge.

Content updated: