skiaMain.SkiaAnimationState.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 org.jetbrains.skia.skottie.Animation
data class SkiaAnimationState(
val composition: Animation? = null,
val isPlaying: Boolean = false,
val isCompleted: Boolean = false,
val progress: Float = 0.0f,
val duration: Float = 0.0f,
val iterations: Int = 0,
val speed: Float = 1f
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy