Skip to content

Commit

Permalink
feat: Implement compose navigation in data table module (#2202)
Browse files Browse the repository at this point in the history
* feat: implemented compose navigation in search module

* feat: implement compose navigation in data table module
  • Loading branch information
Aditya-gupta99 committed Aug 22, 2024
1 parent f845c6e commit 330f81b
Show file tree
Hide file tree
Showing 19 changed files with 257 additions and 509 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,7 @@ object Constants {
const val REPORT_PARAMETER_RESPONSE = "report_parameter_response"
const val LOAN_WITH_ASSOCIATIONS = "loanWithAssociation"
const val PASSCODE_INITIAL_LOGIN = "passcode_initial_login"
const val DATA_TABLE_NAV_DATA = "data_table_nav_data"
const val DATA_TABLE_DATA_NAV_DATA = "data_table_data_nav_data"
const val DATA_TABLE_LIST_NAV_DATA = "data_table_list_nav_data"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.mifos.core.objects.navigation

import com.mifos.core.objects.noncore.DataTable

data class DataTableDataNavigationArg(

val tableName: String,

val entityId: Int,

val dataTable: DataTable
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.mifos.core.objects.navigation

data class DataTableNavigationArg(

val tableName: String,

val entityId : Int
)
Loading

0 comments on commit 330f81b

Please sign in to comment.