Skip to content

Instantly share code, notes, and snippets.

@igorescodro
Created June 9, 2025 23:28
Show Gist options
  • Save igorescodro/f3bb4f4d4f0a62f0287c6a83212fc578 to your computer and use it in GitHub Desktop.
Save igorescodro/f3bb4f4d4f0a62f0287c6a83212fc578 to your computer and use it in GitHub Desktop.
internal class NavGraphProvider(
private val navEventController: NavEventController,
private val navGraphs: List<NavGraph>,
) {
val navigationGraph: NavGraphBuilder.() -> Unit = {
navGraphs.forEach { graph ->
graph.navGraph(this, navEventController)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment