---
title: "TransformingLazyColumnFirstLayoutItemProvider.ItemInfo"
description: "Holds information about the first item to layout in TransformingLazyColumn."
type: "class"
lastmod: "2026-07-02T02:32:45.310353Z"
---
## API Reference

> Source set: Android

```kotlin
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](/jetpack-compose/androidx.wear.compose/compose-foundation/composable-functions/TransformingLazyColumn).

During measurement, [TransformingLazyColumn](/jetpack-compose/androidx.wear.compose/compose-foundation/composable-functions/TransformingLazyColumn) resolves this item to its index, measures it,
and arranges all other items relative to its [offset](/jetpack-compose/androidx.compose.ui/ui-geometry/classes/Offset) screen coordinate.
