Composables UI is out: our new component library for Compose Multiplatform ->
Class

TransformingLazyColumnFirstLayoutItemProvider.ItemInfo

Holds information about the first item to layout in TransformingLazyColumn.

Source set: Android
public class ItemInfo(
        public val index: Int,
        public val itemEdge: ItemEdge,
        public val offset: Int,
        public val key: Any? = null,
    )

Holds information about the first item to layout in TransformingLazyColumn.

During measurement, TransformingLazyColumn resolves this item to its index, measures it, and arranges all other items relative to its offset screen coordinate.

Last updated: