iosMain.lottie.LottieAnimationState.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
package lottie
import Lottie.CompatibleAnimationView
import kotlinx.cinterop.ExperimentalForeignApi
@OptIn(ExperimentalForeignApi::class)
data class LottieAnimationState(
val composition: CompatibleAnimationView? = null,
val isPlaying: Boolean = false,
val isCompleted: Boolean = false,
val progress: Float = 0f,
val iterations: Int = 0,
val speed: Float = 0f,
val duration: Float = 0f
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy