Tlaster
Tlaster
Currently does not, I'm working on a hash router for web including web browser history support.
PreCompose is not using `SavedStateHandle` now, so this is the current behavior, I'll try to add support to this but will be an Android only behavior.
> @Tlaster is this in progress by you or? It's kinda crucial for the UX when releasing to the Play Store as many devices kill the apps unexpectedly and the...
> > > @Tlaster is this in progress by you or? It's kinda crucial for the UX when releasing to the Play Store as many devices kill the apps unexpectedly...
Currently deeplink require manually handle on all platform, for example, in Android you can handle like this: ```Kotlin override fun onCreate(savedInstanceState: Bundle?) { //.... intent.data?.let { navigator.navigate(it.toString()) } addOnNewIntentListener {...
Yes I agree, the keyword makes people confused, I'm still trying to implement deeplink handling automatically.
I personally do not feel like this is a navigation library's job, since you can just have an event bus separately and also do the same thing.
这是预期行为,因为进行navigate的时候会导致composable tree发生变化
可以将所有页面设置为dialog,这样所有页面都会出现在composable tree中,不是很推荐这种做法,因为可能会导致别的性能问题。