commonMain.kottieComposition.KottieCompositionSpec.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 kottieComposition
import kotlin.jvm.JvmInline
sealed interface KottieCompositionSpec {
@JvmInline
value class Url(val url: String) : KottieCompositionSpec
@JvmInline
value class File (val path: String) : KottieCompositionSpec
@JvmInline
value class JsonString(val jsonString: String) : KottieCompositionSpec
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy