Skip to content

Instantly share code, notes, and snippets.

@LachlanMcKee
Last active June 3, 2021 10:24
Show Gist options
  • Save LachlanMcKee/abe1cd6524f614c439be6e2be062d19a to your computer and use it in GitHub Desktop.
Save LachlanMcKee/abe1cd6524f614c439be6e2be062d19a to your computer and use it in GitHub Desktop.
Scalable Jetpack Compose Navigation - With Library - Feature1ComposeNavigationFactory
// Defined within the feature module
@HiltComposeNavigationFactory
internal class Feature1ComposeNavigationFactory @Inject constructor() : ComposeNavigationFactory {
override fun create(builder: NavGraphBuilder, navController: NavHostController) {
builder.composable(
route = "feature1",
content = {
Feature1(
navController = navController
)
}
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment