I'm trying the new jetpack library "compose-navigation".
According to the docs, to navigate to a route, I should use navigate()
method which takes a String.
navController = rememberNavController()
// navigate
navController.navigate("/another_route")
However, no such method exists navigate(String)
and I get compile error.
What am I missing?