Skip to content

Commit

Permalink
Merge branch 'master' into nav_graph_data_table
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya-gupta99 authored Aug 22, 2024
2 parents 1a2668f + f845c6e commit 096e0f9
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ import com.mifos.feature.checker_inbox_task.navigation.checkerInboxTaskGraph
import com.mifos.feature.client.navigation.clientNavGraph
import com.mifos.feature.client.navigation.navigateClientDetailsScreen
import com.mifos.feature.client.navigation.navigateCreateClientScreen

import com.mifos.feature.data_table.navigation.dataTableNavGraph
import com.mifos.feature.data_table.navigation.navigateDataTable


import com.mifos.feature.document.navigation.documentListScreen
import com.mifos.feature.document.navigation.navigateToDocumentListScreen
import com.mifos.feature.groups.navigation.groupListScreen
Expand Down Expand Up @@ -62,12 +65,16 @@ fun Navigation(
Constants.ENTITY_TYPE_CLIENTS
)
},

moreClientInfo = {
navController.navigateDataTable(
Constants.DATA_TABLE_NAME_CLIENT,
it
)
},



notes = { navController.navigateToNoteScreen(it, Constants.ENTITY_TYPE_CLIENTS) },
loanAccountSelected = { navController.navigateToLoanAccountSummaryScreen(it) },
savingsAccountSelected = { id, type ->
Expand Down Expand Up @@ -183,9 +190,12 @@ fun Navigation(
)
generateCollectionSheetScreen(onBackPressed = navController::popBackStack)


dataTableNavGraph(
navController = navController,
clientCreated = {}
)


}
}

0 comments on commit 096e0f9

Please sign in to comment.