Fix color of menu icon with dark theme

This commit is contained in:
Pierre-Yves Nicolas
2026-01-18 11:42:31 +01:00
parent c531bd35c5
commit 2acecfdffb

View File

@@ -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(