We just launched Compose Examples featuring over 150+ components! Check it out →

Jetpack Compose library

Compose Animation

"Compose Animation" refers to the animation capabilities integrated into Jetpack Compose, allowing developers to create fluid and interactive user experiences in Android applications. It provides a declarative way to define and manage animations, enhancing the visual appeal and usability of apps with smooth transitions and dynamic motion effects.

Installation

dependencies {
  implementation("androidx.compose.animation:animation:1.8.0-alpha04")
}

Components in Compose Animation

Compose Animation contains 5 Jetpack Compose components:

AnimatedContent
AnimatedVisibility
Crossfade
SharedTransitionLayout
SharedTransitionScope

Modifiers in Compose Animation

Compose Animation contains 2 Jetpack Compose modifier(s):

by @alexstyl