Fix color of menu icon with dark theme
This commit is contained in:
@@ -171,7 +171,11 @@ fun AppOverflowMenu(
|
|||||||
modifier
|
modifier
|
||||||
) {
|
) {
|
||||||
IconButton(onClick = { expanded = true }) {
|
IconButton(onClick = { expanded = true }) {
|
||||||
Icon(Icons.Default.MoreVert, contentDescription = stringResource(R.string.menu))
|
Icon(
|
||||||
|
Icons.Default.MoreVert,
|
||||||
|
contentDescription = stringResource(R.string.menu),
|
||||||
|
tint = MaterialTheme.colorScheme.onSurfaceVariant
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
DropdownMenu(
|
DropdownMenu(
|
||||||
|
|||||||
Reference in New Issue
Block a user