All Downloads are FREE. Search and download functionalities are using the official Maven repository.

iosMain.kottieAnimation.ios.kt Maven / Gradle / Ivy

There is a newer version: 1.9.6
Show newest version
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