You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: feature/loan/src/commonMain/kotlin/com/mifos/feature/loan/loanRepaymentSchedule/LoanRepaymentScheduleScreen.kt
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -197,23 +197,23 @@ private fun LoanRepaymentRowItem(
197
197
modifier =Modifier.weight(3f),
198
198
text = date ?:"",
199
199
style =MaterialTheme.typography.bodyLarge,
200
-
color =Color.Black,
200
+
color =MaterialTheme.colorScheme.onBackground,
201
201
textAlign =TextAlign.End,
202
202
)
203
203
204
204
Text(
205
205
modifier =Modifier.weight(3f),
206
206
text = amountDue,
207
207
style =MaterialTheme.typography.bodyLarge,
208
-
color =Color.Black,
208
+
color =MaterialTheme.colorScheme.onBackground,
209
209
textAlign =TextAlign.End,
210
210
)
211
211
212
212
Text(
213
213
modifier =Modifier.weight(3f),
214
214
text = amountPaid,
215
215
style =MaterialTheme.typography.bodyLarge,
216
-
color =Color.Black,
216
+
color =MaterialTheme.colorScheme.onBackground,
217
217
textAlign =TextAlign.End,
218
218
)
219
219
}
@@ -226,7 +226,7 @@ private fun LoanRepaymentRowItem(
0 commit comments