commonMain.com.arkivanov.decompose.extensions.compose.pages.PagesScrollAnimation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extensions-compose-jvm Show documentation
Show all versions of extensions-compose-jvm Show documentation
Kotlin Multiplatform lifecycle-aware business logic components
The newest version!
package com.arkivanov.decompose.extensions.compose.pages
import androidx.compose.animation.core.AnimationSpec
sealed interface PagesScrollAnimation {
data object Disabled : PagesScrollAnimation
data object Default : PagesScrollAnimation
class Custom(val spec: AnimationSpec) : PagesScrollAnimation
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy