Skip to content

Commit

Permalink
fix: Fix visibility issues in Saving Account Withdraw screen (openMF#…
Browse files Browse the repository at this point in the history
…2724)

Changed background color to make fields visible in dark mode.
  • Loading branch information
HekmatullahAmin authored Dec 24, 2024
1 parent 3bbcd02 commit f863c27
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ private fun SavingsAccountWithdrawScreen(
) {
val context = LocalContext.current

Column(modifier = modifier.fillMaxSize()) {
Column(
modifier = modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background),
) {
MifosTopBar(
navigateBack = { navigateBack(false) },
title = { Text(text = stringResource(id = R.string.withdraw_savings_account)) },
Expand Down

0 comments on commit f863c27

Please sign in to comment.