Skip to content

Commit

Permalink
fix: Dropdown background color
Browse files Browse the repository at this point in the history
  • Loading branch information
therajanmaurya committed Mar 24, 2024
1 parent ce83c15 commit 8bd674a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package org.mifos.mobilewallet.mifospay.ui
import android.content.Context
import android.content.Intent
import androidx.compose.animation.AnimatedVisibility
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
Expand Down Expand Up @@ -110,8 +111,10 @@ fun MifosApp(appState: MifosAppState) {
.fillMaxWidth()
.wrapContentSize(Alignment.TopEnd)
.padding(end = 24.dp)
.background(color = Color.White)
) {
DropdownMenu(
modifier = Modifier.background(color = Color.White),
expanded = showHomeMenuOption,
onDismissRequest = { showHomeMenuOption = false }
) {
Expand Down

0 comments on commit 8bd674a

Please sign in to comment.