Class

RemoteExitTransition

Transition effect applied when a component exits a state layout.

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

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

FadeOut

Source set: Android
public val FadeOut: RemoteExitTransition = RemoteExitTransition(ANIMATION.FADE_OUT)

Fades the component out from opaque to transparent.

SlideOutLeft

Source set: Android
public val SlideOutLeft: RemoteExitTransition = RemoteExitTransition(ANIMATION.SLIDE_LEFT)

Slides the component out towards the left.

SlideOutRight

Source set: Android
public val SlideOutRight: RemoteExitTransition = RemoteExitTransition(ANIMATION.SLIDE_RIGHT)

Slides the component out towards the right.

SlideOutTop

Source set: Android
public val SlideOutTop: RemoteExitTransition = RemoteExitTransition(ANIMATION.SLIDE_TOP)

Slides the component out towards the top.

SlideOutBottom

Source set: Android
public val SlideOutBottom: RemoteExitTransition =
            RemoteExitTransition(ANIMATION.SLIDE_BOTTOM)

Slides the component out towards the bottom.

Rotate

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

Rotates the component during exit.

Particle

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

Applies a particle effect during exit.

Content updated: