Class

RemoteEnterTransition

Transition effect applied when a component enters a state layout.

Source set: Android
public class RemoteEnterTransition internal constructor(internal val animation: ANIMATION)

Transition effect applied when a component enters a state layout.

Functions

equals

Source set: Android
override fun equals(other: Any?): Boolean

hashCode

Source set: Android
override fun hashCode(): Int

toString

Source set: Android
override fun toString(): String

Members

Companion

Source set: Android
public companion object

Properties

FadeIn

Source set: Android
public val FadeIn: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.FADE_IN)

Fades the component in from transparent to opaque.

SlideInLeft

Source set: Android
public val SlideInLeft: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.SLIDE_LEFT)

Slides the component in towards the left.

SlideInRight

Source set: Android
public val SlideInRight: RemoteEnterTransition =
            RemoteEnterTransition(ANIMATION.SLIDE_RIGHT)

Slides the component in towards the right.

SlideInTop

Source set: Android
public val SlideInTop: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.SLIDE_TOP)

Slides the component in towards the top.

SlideInBottom

Source set: Android
public val SlideInBottom: RemoteEnterTransition =
            RemoteEnterTransition(ANIMATION.SLIDE_BOTTOM)

Slides the component in towards the bottom.

Rotate

Source set: Android
public val Rotate: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.ROTATE)

Rotates the component during entry.

Particle

Source set: Android
public val Particle: RemoteEnterTransition = RemoteEnterTransition(ANIMATION.PARTICLE)

Applies a particle effect during entry.

Content updated: