gpt4 book ai didi

android - 将参数传递给 Jetpack Compose 中的嵌套导航图

转载 作者:行者123 更新时间:2023-12-05 00:02:23 28 4
gpt4 key购买 nike

来自 docs ,我看到你可以像这样嵌套导航图:

NavHost(navController, startDestination = "home") {
...
// Navigating to the graph via its route ('login') automatically
// navigates to the graph's start destination - 'username'
// therefore encapsulating the graph's internal routing logic
navigation(startDestination = "username", route = "login") {
composable("username") { ... }
composable("password") { ... }
composable("registration") { ... }
}
...
}
我想知道,如何在 route 传递一个参数,并将其提供给导航图中的所有可组合项?
这是我当前的导航图:
navigation(
// I'd like to grab this parameter
route = "dashboard?classId={classId}",
startDestination = Route.ScreenOne.route) {
composable(Route.ScreenOne.route) {
// And then pass the parameter here, or to any composable below
ScreenOne(classId)
}
composable(Route.ScreenTwo.route) {
ScreenTwo()
}
composable(Route.ScreenThree.route) {
ScreenThree()
}
}
我基本上是在尝试避免在每个可组合路线上单独设置 classId 导航参数。我没有看到将参数列表传递给 navigation() 的方法就像你可以在 composable() .
可能我所描述的是不可能的,但期待任何人的想法!

最佳答案

您可以从子可组合项访问图形参数:

navController.getBackStackEntry("dashboard?classId={classId}").arguments?.getString("classId")

关于android - 将参数传递给 Jetpack Compose 中的嵌套导航图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70086094/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com