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

> Source set: Android

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

Transition effect applied when a component enters 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

### FadeIn

> Source set: Android

```kotlin
public val FadeIn: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.FADE_IN)
```

Fades the component in from transparent to opaque.

### SlideInLeft

> Source set: Android

```kotlin
public val SlideInLeft: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.SLIDE_LEFT)
```

Slides the component in towards the left.

### SlideInRight

> Source set: Android

```kotlin
public val SlideInRight: RemoteEnterTransition =
            RemoteEnterTransition(ANIMATION.SLIDE_RIGHT)
```

Slides the component in towards the right.

### SlideInTop

> Source set: Android

```kotlin
public val SlideInTop: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.SLIDE_TOP)
```

Slides the component in towards the top.

### SlideInBottom

> Source set: Android

```kotlin
public val SlideInBottom: RemoteEnterTransition =
            RemoteEnterTransition(ANIMATION.SLIDE_BOTTOM)
```

Slides the component in towards the bottom.

### Rotate

> Source set: Android

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

Rotates the component during entry.

### Particle

> Source set: Android

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

Applies a particle effect during entry.
