This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 686
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Tabular Loan UI added * Fixed detekt errors * Fixed detekt errors * Fixed detekt errors * Fixed detekt errors * TabularLoanBottomBar Fab Button Color Update * TabularLoanBottomBar Fab Button Color Update * TabularLoanBottomBar Tab Selection Color Update * Detekt error fixed * Reviews resolved * Detekt errors fixed * compose-stability errors fixed * compose-stability errors fixed * compose-stability errors fixed * Removed un-used import
- Loading branch information
1 parent
1a9fe27
commit b75a0b8
Showing
17 changed files
with
508 additions
and
92 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
6 changes: 6 additions & 0 deletions
6
screen/loans/src/main/java/com/ivy/loans/loan/LoanScreenMode.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,6 @@ | ||
package com.ivy.loans.loan | ||
|
||
sealed interface LoanScreenMode { | ||
data object TabularMode : LoanScreenMode | ||
data object NonTabularMode : LoanScreenMode | ||
} |
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
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.ivy.loans.loan | ||
|
||
import androidx.compose.runtime.Immutable | ||
|
||
@Immutable | ||
enum class LoanTab { | ||
PENDING, COMPLETED | ||
} |
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
Oops, something went wrong.