---
title: "ListItemGlow"
description: "Represents the [Glow] of ListItem for different interaction states."
type: "class"
---

<div class='type'>Class</div>


<a id='references'></a>

<div class='sourceset sourceset-android'>Android</div>


```kotlin
class ListItemGlow
constructor(
    val glow: Glow,
    val focusedGlow: Glow,
    val pressedGlow: Glow,
    val selectedGlow: Glow,
    val focusedSelectedGlow: Glow,
    val pressedSelectedGlow: Glow,
)
```


Represents the `Glow` of ListItem for different interaction states.

#### Parameters

| | |
| --- | --- |
| glow | the `Glow` used when the ListItem is enabled. |
| focusedGlow | the `Glow` used when the ListItem is enabled and focused. |
| pressedGlow | the `Glow` used when the ListItem is enabled and pressed. |
| selectedGlow | the `Glow` used when the ListItem is enabled and selected. |
| focusedSelectedGlow | the `Glow` used when the ListItem is enabled, focused and selected. |
| pressedSelectedGlow | the `Glow` used when the ListItem is enabled, pressed and selected. |




