How can I return to the root Fragment using the NavController
?
I tried
navController.popBackStack(navController.graph.startDestination, false)
but it did not work. This did work:
navController.navigate(navController.graph.startDestination, false)
navController.popBackStack(0, false)
but I'm wondering if this is a proper way to solve this problem.