voyager
voyager copied to clipboard
Deep links documentation need update
https://voyager.adriel.cafe/deep-links
from
setContent {
Navigator(
HomeScreen,
PostListScreen(),
PostDetailsScreen(postId)
)
}
to
setContent {
Navigator(
listOf(
HomeScreen,
PostListScreen(),
PostDetailsScreen(postId)
)
)
}