This may be a really stupid questions, but I'm going through and learning the navigation API now that it's in the multiplatform beta, but the API seems to be slightly different from the android docs to the multiplatform one. If it's different, is there some good reading on the multiplatform one?
For example, the android nav library has you declare routes like (from the android docs)
composable<Profile> { ... }
but the multiplatform one seems to just be
composable(string)
that doesn't take serialized arguments?
i
Ivan Matkov
09/17/2024, 3:30 PM
Serialized args are supposed in multiplatform
Ivan Matkov
09/17/2024, 3:31 PM
It's a feature of 2.8.*, so make sure you are on the right version
g
Garret Yoder
09/17/2024, 4:04 PM
Oh, I didn't even realize I was a version behind I was following the converted Jetsnack example. That did it, thanks!