Router Deep Link Trie
A Trie for resolving deep-linked URLs to IRoutes
Example Declaration:
sealed class Route: IRoute {
data object Home: Route()
data object StaticDeepLinkTest: Route()
data class DynamicDeepLinkTest(val dynamicValue: String): Route()
companion object {
val deepLinks = Router.buildDeepLinks {
"/static-deep-link" routesTo { _, _ -> StaticDeepLinkTest }
"/dynamic-deep-link/:value" routesTo { args, _ -> DynamicDeepLinkTest(args[0]) }
}
}
}
Content copied to clipboard
Example Usage:
val deepLink = Route.deepLinks.matchRoute(deepLinkUrlFromPlatform)
val router = Router(initialRoute = deepLink ?: Route.Home)
Content copied to clipboard