---
title: "GlimmerLazyListItemInfo"
description: "Contains useful information about an individual item in a GlimmerLazyColumn."
type: "interface"
lastmod: "2026-05-20T01:13:52.932582Z"
---
## API Reference

> Source set: Android

```kotlin
public interface GlimmerLazyListItemInfo
```

Contains useful information about an individual item in a [GlimmerLazyColumn](/jetpack-compose/androidx.xr.glimmer/glimmer/components/GlimmerLazyColumn).

## Properties

### index

> Source set: Android

```kotlin
public val index: Int
```

The index of the item in the list.

### key

> Source set: Android

```kotlin
public val key: Any
```

The key of the item which was passed to the item() or items() function.

### offset

> Source set: Android

```kotlin
public val offset: Int
```

The main axis offset of the item in pixels. It is relative to the start of the lazy list
container.

### size

> Source set: Android

```kotlin
public val size: Int
```

The main axis size of the item in pixels. Note that if you emit multiple layouts in the
composable slot for the item then this size will be calculated as the sum of their sizes.

### contentType

> Source set: Android

```kotlin
public val contentType: Any?
```

The content type of the item which was passed to the item() or items() function.
