Open xuhuan opened 2 months ago
我没有办法复现这个问题,可以提供完整的复现repo吗?
PreComposeApp {
val navigator = rememberNavigator()
Scaffold(
modifier = Modifier.fillMaxSize(),
) { contentPadding ->
Box(
modifier = Modifier
.padding(contentPadding)
.fillMaxSize()
) {
NavHost(
// Assign the navigator to the NavHost
navigator = navigator,
// Navigation transition for the scenes in this NavHost, this is optional
navTransition = NavTransition(),
// The start destination
initialRoute = "/home",
) {
scene(
route = "/home",
) {
Text(text = "home Hello!")
}
}
}
}
}
定位出了问题代码所在,NavHost在Scaffold里面的表现在1.6.0及以下和以上版本的表现是不一样的。1.6.1开始NavHost写在Scaffold里面就会出现之前反馈的问题,路由不会进行跳转。切换到1.6.0就没问题。 @Tlaster
Describe the bug 在不变动代码的情况下,版本1.6.0及以下导航都是正常的,初始化后能正常跳转到默认页。将版本升级到1.6.1或者1.6.2,导航初始化后页面空白,不会进行跳转到默认页。代码显示进行跳转也不会进行。
通过日志打印发现1.6.0及以下情况scene里的日志能正常打印,能跳转,内容显示正常。 升级到1.6.1及以上scene里的日志不会打印,且页面空白,不会跳转到默认页。
这种有人碰到过么?大概是什么原因导致的?感谢各位的回复🙏 @Tlaster