fix: Fix visibility issues in Saving Account Withdraw screen (#2724)

Changed background color to make fields visible in dark mode.
This commit is contained in:
Hekmatullah 2024-12-24 17:15:18 +00:00 committed by GitHub
parent 3bbcd024df
commit f863c27e57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)) },