This may be a really stupid questions, but I'm goi...
# compose
g
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
Serialized args are supposed in multiplatform
It's a feature of 2.8.*, so make sure you are on the right version
g
Oh, I didn't even realize I was a version behind I was following the converted Jetsnack example. That did it, thanks!