Hi. Navigation question. I've this code: ``` ...
# compose
a
Hi. Navigation question. I've this code:
Copy code
val navController = rememberNavController()
            AlarmsTheme {
                Scaffold(
                    topBar = {
                        val destinationName = navController.currentDestination?.route ?: "No route"
                        ClockTopBar(title = destinationName)
                    },
...
And I navigate using a simple
navigate()
method... Why
navController.currentDestination
is always null?
1