Type-Safe Navigation In Jetpack Compose

Daniel Atitienei
2 min readJun 4, 2024

Grab a coffee ☕, and let me show you how easily it got to pass arguments to other screens using Compose. You won’t believe how easy it is 😅

Make sure that you have these dependencies added to your libs.versions.toml .

[versions]
navigationCompose = "2.8.0-beta02"
serialization = "1.6.3"

[libraries]
androidx-navigation-compose = { module =…

--

--