commonMain.com.arkivanov.decompose.extensions.compose.stack.animation.StackAnimationProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extensions-compose Show documentation
Show all versions of extensions-compose Show documentation
Kotlin Multiplatform lifecycle-aware business logic components
The newest version!
package com.arkivanov.decompose.extensions.compose.stack.animation
import androidx.compose.runtime.compositionLocalOf
interface StackAnimationProvider {
fun provide(): StackAnimation?
}
val LocalStackAnimationProvider = compositionLocalOf {
object : StackAnimationProvider {
override fun provide(): StackAnimation? = null
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy