ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Compose Navigation The Old Way

Davies Adedayo AbdulGafar
ProAndroidDev
Published in
6 min readOct 25, 2024

Understanding the Structure of Navigation Routes URI

val route = "profile"
val route = "profile/{userId}"
val route = "search?query={query}"
val route = "profile/{userId}?showDetails={showDetails}&page={page}"

Case Study

How can this problem be better managed?

Utility API Doc
Builder API Doc

Sample Usage for Defining Routes and Navigating

navController.navigate(FORM_ROUTE.navRoute())

Enforcing Type Safety For Argument

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Davies Adedayo AbdulGafar

"It takes a community to raise a child"—an adage in my culture. I am not self taught, i was raised by developer communities that made knowledge freely available

Responses (1)

Write a response