Hello there. Is it possible to save the state of a...
# navigation-architecture-component
w
Hello there. Is it possible to save the state of a nested navigation without popping up to start destination? I'm trying to implement a multi-stack navigation across bottomBar tabs. (navigation in Compose)
Copy code
navOptions {
                popUpTo(navController.graph.findStartDestination().id) {
                    saveState = true
                }
                restoreState = true
            }