<div class='sourceset sourceset-common'>Common</div>

```kotlin
@ExperimentalMaterial3AdaptiveApi
    
    value class Type private constructor(val value: Int)
```

Indicates the current type of pane motion, like if the pane is entering or exiting, or is
kept showing or hidden.

## Companion Object

#### Properties

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val Hidden = Type(0)
```

Indicates the pane is kept hidden during the current motion.

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val Exiting = Type(1)
```

Indicates the pane is exiting or hiding during the current motion.

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val Entering = Type(2)
```

Indicates the pane is entering or showing during the current motion.

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val Shown = Type(3)
```

Indicates the pane is keeping being shown during the current motion.

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val ExitingModal = Type(5)
```

Indicates the pane is exiting or hiding as a modal, i.e., a levitated pane, during
the current motion.

<div class='sourceset sourceset-common'>Common</div>

```kotlin
val EnteringModal = Type(6)
```

Indicates the pane is entering or showing as a modal, i.e., a levitated pane, during
the current motion.