Decouple ChannelScreen from UIViewModel (#3295)

This commit is contained in:
Phil Oliver 2025-10-02 14:25:47 -04:00 committed by GitHub
parent 309ec5a6b4
commit a5cd2d6bbc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 157 additions and 65 deletions

View file

@ -390,9 +390,9 @@ fun MainScreen(uIViewModel: UIViewModel = hiltViewModel(), scanModel: BTScanMode
modifier = Modifier.fillMaxSize().recalculateWindowInsets().safeDrawingPadding().imePadding(),
) {
contactsGraph(navController)
nodesGraph(navController, uiViewModel = uIViewModel)
nodesGraph(navController)
mapGraph(navController)
channelsGraph(navController, uiViewModel = uIViewModel)
channelsGraph(navController)
connectionsGraph(navController)
settingsGraph(navController)
}