Skip to content

Commit

Permalink
feat: implement compose navigation in data table module
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya-gupta99 committed Aug 21, 2024
1 parent 0fe0c09 commit 1a2668f
Show file tree
Hide file tree
Showing 19 changed files with 247 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 1a2668f

Please sign in to comment.