Is there any doc out there on how to use `handleDe...
# compose
l
Is there any doc out there on how to use
handleDeepLink
when navigating to a route that has type-safe arguments? 🧵
This is my definition for my route depplink
Copy code
navDeepLink<AuthenticateNavigation.SignUpForm>(
    basePath = RESUME_SIGN_UP_URI,
    typeMap = mapOf(
        typeOf<Int>() to NavType.IntType,
        typeOf<Boolean>() to NavType.BoolType,
    )
)