---
title: "RemoteExitTransition"
description: "Transition effect applied when a component exits a state layout."
type: "class"
lastmod: "2026-09-24"
---
## API Reference

> Source set: Android

```kotlin
public class RemoteExitTransition internal constructor(internal val animation: ANIMATION)
```

Transition effect applied when a component exits a state layout.

## Functions

### equals

> Source set: Android

```kotlin
override fun equals(other: Any?): Boolean
```

### hashCode

> Source set: Android

```kotlin
override fun hashCode(): Int
```

### toString

> Source set: Android

```kotlin
override fun toString(): String
```

## Members

### Companion

> Source set: Android

```kotlin
public companion object
```

## Properties

### FadeOut

> Source set: Android

```kotlin
public val FadeOut: RemoteExitTransition = RemoteExitTransition(ANIMATION.FADE_OUT)
```

Fades the component out from opaque to transparent.

### SlideOutLeft

> Source set: Android

```kotlin
public val SlideOutLeft: RemoteExitTransition = RemoteExitTransition(ANIMATION.SLIDE_LEFT)
```

Slides the component out towards the left.

### SlideOutRight

> Source set: Android

```kotlin
public val SlideOutRight: RemoteExitTransition = RemoteExitTransition(ANIMATION.SLIDE_RIGHT)
```

Slides the component out towards the right.

### SlideOutTop

> Source set: Android

```kotlin
public val SlideOutTop: RemoteExitTransition = RemoteExitTransition(ANIMATION.SLIDE_TOP)
```

Slides the component out towards the top.

### SlideOutBottom

> Source set: Android

```kotlin
public val SlideOutBottom: RemoteExitTransition =
            RemoteExitTransition(ANIMATION.SLIDE_BOTTOM)
```

Slides the component out towards the bottom.

### Rotate

> Source set: Android

```kotlin
public val Rotate: RemoteExitTransition = RemoteExitTransition(ANIMATION.ROTATE)
```

Rotates the component during exit.

### Particle

> Source set: Android

```kotlin
public val Particle: RemoteExitTransition = RemoteExitTransition(ANIMATION.PARTICLE)
```

Applies a particle effect during exit.
