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

commonTest.app.softwork.routingcompose.MockRouter.kt Maven / Gradle / Ivy

package app.softwork.routingcompose

import androidx.compose.runtime.*

class MockRouter : Router() {

    private val currentPath = mutableStateOf(null)

    @Composable
    override fun getPath(initPath: String) =
        derivedStateOf { currentPath.value ?: initPath }

    override fun navigate(to: String) {
        currentPath.value = to
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy