commonMain.com.alphicc.brick.CompositeComponentRouter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brick Show documentation
Show all versions of brick Show documentation
Brick - Navigation library for Jetpack Compose.
The newest version!
package com.alphicc.brick
interface CompositeComponentRouter : ComponentRouter {
fun attachCompositeComponent(component: Component<*>)
fun attachCompositeComponent(component: Component<*>, argument: A)
fun detachCompositeComponent(key: String)
}