shpasha
shpasha
Suppose our **rootNavigator** is configured with the following `disposeBehavior` field: ``` NavigatorDisposeBehavior( disposeNestedNavigators = false, disposeSteps = true, ) ``` And it contains the navigation stack: `A -> B ->...
ISSUE SOLVED: [112](https://github.com/adrielcafe/voyager/issues/112) **Problem** During the configuration change process, the `onDispose` method in `AndroidScreenLifecycleOwner` is not called. As I understand it, this is normal, because almost all `DisposableEffects` in voyager...
In continuation to this PR https://github.com/adrielcafe/voyager/pull/415 I think this solution is better and i also checked it in our project I don't actually see where `onDispose` in `AndroidScreenLifecycleOwner` would be...
ISSUE SOLVED: [106](https://github.com/adrielcafe/voyager/issues/106) There is a problem. Let's take a look at the sample code. If we set `disposeStepsBehavior = DisposeStepsBehavior.DisposeWhenStackChanged` in my sample, then when navigating to the `SampleScreen#1`...
Kotlin 1.9.0-RC comes with support for [Gradle configuration cache](https://docs.gradle.org/current/userguide/configuration_cache.html) in multiplatform libraries. https://kotlinlang.org/docs/whatsnew-eap.html#preview-of-gradle-configuration-cache-in-kotlin-multiplatform It would be great to add gradle configuration cache support in this plugin
A slightly different approach to screen transitions. Now the active screen (the one we push) determines the animation. We already have this approach in our approach and it is very...