All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.dev.programadorthi.routing.compose.ComposeManager.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha02
Show newest version
package dev.programadorthi.routing.compose

import androidx.compose.runtime.snapshots.SnapshotStateList
import dev.programadorthi.routing.core.Routing
import dev.programadorthi.routing.core.application.ApplicationCall
import io.ktor.util.AttributeKey

private val ComposeRoutingAttributeKey: AttributeKey> =
    AttributeKey("ComposeRoutingAttributeKey")

internal var Routing.callStack: SnapshotStateList
    get() = attributes[ComposeRoutingAttributeKey]
    set(value) {
        attributes.put(ComposeRoutingAttributeKey, value)
    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy