Skip to content

Deep links

Warning

Currently Voyager does not provided a built in solution to handle Deeplink and URIs. see #149 and #382

You can initialize the Navigator with multiple screens, that way, the first visible screen will be the last one and will be possible to return (pop()) to the previous screens.

val postId = getPostIdFromIntent()

setContent {
    Navigator(
        HomeScreen,
        PostListScreen(),
        PostDetailsScreen(postId)
    )
}