-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
The design of how to navigate between destinations is not well designed, and needs to be abstracted a bit.
I plan to do something like Joe Birch mentions in his great Navigation article
object NavigationDirections {
val authentication = object : NavigationCommand {
override val arguments = emptyList<NamedNavArgument>()
override val destination = "authentication"
}
val dashboard = object : NavigationCommand {
override val arguments = emptyList<NamedNavArgument>()
override val destination = "dashboard"
}
}Metadata
Metadata
Assignees
Labels
No labels