voyager icon indicating copy to clipboard operation
voyager copied to clipboard

Deep links documentation need update

Open t1r opened this issue 2 years ago • 0 comments

https://voyager.adriel.cafe/deep-links

from

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

to

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

t1r avatar Nov 03 '22 10:11 t1r