Package-level declarations

Types

Link copied to clipboard

Defines an animated route.

Link copied to clipboard
interface IRoute

Defines a route. This must be unique and implement equals(). This is normally a data class.

Link copied to clipboard
interface IRoutePopScope

The scope all pop operations are performed in

Link copied to clipboard
interface IRouter

A Router is stack of RouteStackEntry that allows pushing and popping of routes.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Defines a route transition. An IRouteTransition may define a transition however the UI needs.

Link copied to clipboard
interface IWebRoute : IRoute

Defines a route that supports Web Browsers and allows a router to update the title and URL bar. Note: When using IWebRoute with Compose Multiplatform your application and web server must be configured to handle paths via configureWebResources.resourcePathMapping and potentially web server path rewrites to avoid 404s and errors

Link copied to clipboard
typealias RoutePopFunc = IRoutePopScope.() -> (route: RouteStackEntry) -> Boolean
Link copied to clipboard
class Router(initialRoute: IRoute, defaultTransition: IRouteTransition = DefaultTransition) : IRouter

Router the primary implementation of IRouter

Link copied to clipboard
typealias RouterDeepLinkMapper = (pathArgs: List<String>, url: KmpUrl) -> IRoute
Link copied to clipboard

A Trie for resolving deep-linked URLs to IRoutes

Link copied to clipboard
sealed class RouteResultError
Link copied to clipboard
data class RouteStackEntry(val route: IRoute, val transition: IRouteTransition? = null, val id: Int = uid())

Defines an entry in the route stack. It contains a unique id for the entry, the IRoute that identifies the route, and its lifecycle

Link copied to clipboard

Defines if a transition between routes is running or Idle

Functions

Link copied to clipboard
actual fun initForPlatform(router: Router)
actual fun initForPlatform(router: Router)
Link copied to clipboard
actual fun tearDownForPlatform(router: Router)
actual fun tearDownForPlatform(router: Router)