Bradleycorn
03/15/2025, 1:07 AMBradleycorn
03/15/2025, 1:08 AMcomposable<Profile>(
deepLinks = listOf(
navDeepLink<Profile>(basePath = "$uri/profile"),
// I also need this URL pattern. How do I handle it?
navDeepLink { uriPattern = "$uri/users/{userId}/profile" },
)
) { backStackEntry ->
ProfileScreen(id = backStackEntry.toRoute<Profile>().id)
}
Stylianos Gakis
03/17/2025, 2:24 PMStylianos Gakis
03/17/2025, 2:25 PMBradleycorn
03/17/2025, 2:38 PMBradleycorn
03/17/2025, 2:42 PMStylianos Gakis
03/17/2025, 3:51 PM