Skip to content

Commit

Permalink
Change post dropdown items content color
Browse files Browse the repository at this point in the history
  • Loading branch information
msasikanth committed Jan 30, 2024
1 parent 650c50d commit 8631dae
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,7 @@ private fun PostOptionsButtonRow(
LocalStrings.current.markAsRead
}

Text(
text = label,
color = AppTheme.colorScheme.tintedForeground,
textAlign = TextAlign.Start
)
Text(text = label, color = AppTheme.colorScheme.onSurface, textAlign = TextAlign.Start)
},
leadingIcon = {
val icon =
Expand All @@ -225,7 +221,7 @@ private fun PostOptionsButtonRow(
Icon(
icon,
contentDescription = null,
tint = AppTheme.colorScheme.tintedForeground,
tint = AppTheme.colorScheme.onSurface,
)
},
onClick = {
Expand All @@ -242,15 +238,15 @@ private fun PostOptionsButtonRow(
text = {
Text(
text = LocalStrings.current.share,
color = AppTheme.colorScheme.tintedForeground,
color = AppTheme.colorScheme.onSurface,
textAlign = TextAlign.Start
)
},
leadingIcon = {
Icon(
Icons.Filled.Share,
contentDescription = null,
tint = AppTheme.colorScheme.tintedForeground,
tint = AppTheme.colorScheme.onSurface,
)
},
onClick = {
Expand Down

0 comments on commit 8631dae

Please sign in to comment.