jvmMain.kottieAnimation.desktop.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kottie-jvm Show documentation
Show all versions of kottie-jvm Show documentation
Kotlin Multiplatform Animation Library
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
@Composable
actual fun KottieAnimation(
modifier: Modifier,
composition: Any?,
progress: () -> Float,
backgroundColor: Color
) {
SkiaAnimation(
composition = composition,
progress = { progress() },
modifier = modifier,
backgroundColor = backgroundColor
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy