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