-
Notifications
You must be signed in to change notification settings - Fork 667
feat(loan): redesigned the loan account summary screen UI #2562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 8 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
764b0a2
Improved UI for the LoanAccountSummaryScreen.kt
techsavvy185 c01e306
Improved UI for the LoanAccountSummaryScreen.kt
techsavvy185 1db9853
Improved UI for the LoanAccountSummaryScreen.kt
techsavvy185 936663c
Improved UI for the LoanAccountSummaryScreen.kt
techsavvy185 bbf5a02
Merge branch 'openMF:development' into loanDetailUI
techsavvy185 382d6c9
Improved UI for the LoanAccountSummaryScreen.kt
techsavvy185 fcaf9fc
Fixed the data flow for the LoanAccountSummaryScreen.kt
techsavvy185 9306b1d
Improved UI and added copy icon for the LoanAccountSummaryScreen.kt
techsavvy185 9423b87
Improved UI and added copy icon for the LoanAccountSummaryScreen.kt
techsavvy185 a834f22
Improved UI, defined Indicator Colors and added Currency icon for the…
techsavvy185 49e053a
Merge branch 'development' into loanDetailUI
itsPronay File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1933
🏁 Script executed:
Repository: openMF/android-client
Length of output: 91
🏁 Script executed:
Repository: openMF/android-client
Length of output: 91
🏁 Script executed:
Repository: openMF/android-client
Length of output: 91
🏁 Script executed:
Repository: openMF/android-client
Length of output: 506
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1397
🏁 Script executed:
Repository: openMF/android-client
Length of output: 506
🏁 Script executed:
Repository: openMF/android-client
Length of output: 506
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1969
🏁 Script executed:
Repository: openMF/android-client
Length of output: 49
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1799
🏁 Script executed:
Repository: openMF/android-client
Length of output: 495
🏁 Script executed:
Repository: openMF/android-client
Length of output: 583
🏁 Script executed:
Repository: openMF/android-client
Length of output: 4533
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1620
🏁 Script executed:
Repository: openMF/android-client
Length of output: 47
🏁 Script executed:
Repository: openMF/android-client
Length of output: 12981
🏁 Script executed:
Repository: openMF/android-client
Length of output: 4925
🏁 Script executed:
Repository: openMF/android-client
Length of output: 3313
🏁 Script executed:
Repository: openMF/android-client
Length of output: 797
🏁 Script executed:
Repository: openMF/android-client
Length of output: 4812
🏁 Script executed:
Repository: openMF/android-client
Length of output: 3000
🏁 Script executed:
Repository: openMF/android-client
Length of output: 5069
🏁 Script executed:
Repository: openMF/android-client
Length of output: 3474
🏁 Script executed:
Repository: openMF/android-client
Length of output: 550
🏁 Script executed:
Repository: openMF/android-client
Length of output: 2470
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1384
🏁 Script executed:
Repository: openMF/android-client
Length of output: 3486
🏁 Script executed:
Repository: openMF/android-client
Length of output: 3519
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1274
🏁 Script executed:
Repository: openMF/android-client
Length of output: 421
🏁 Script executed:
Repository: openMF/android-client
Length of output: 47
🏁 Script executed:
Repository: openMF/android-client
Length of output: 2304
🏁 Script executed:
Repository: openMF/android-client
Length of output: 3294
🏁 Script executed:
Repository: openMF/android-client
Length of output: 1367
🏁 Script executed:
Repository: openMF/android-client
Length of output: 213
Handle null loan ID properly instead of defaulting to 0.
loan.idis nullable (defined asInt?inLoanAccountEntity), and defaulting to 0 when null masks data quality issues:Consider filtering out loans with null IDs earlier in the data flow, or validate that
loan.idis not null before enabling the ViewAccount action.🤖 Prompt for AI Agents