forked from openMF/android-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement compose navigation in data table module
- Loading branch information
1 parent
0fe0c09
commit 1a2668f
Showing
19 changed files
with
247 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
core/database/src/main/java/com/mifos/core/objects/navigation/DataTableDataNavigationArg.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |
8 changes: 8 additions & 0 deletions
8
core/database/src/main/java/com/mifos/core/objects/navigation/DataTableNavigationArg.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |
Oops, something went wrong.