Add default style for dropdown menu item text.

This commit is contained in:
jeffrey-signal
2025-10-14 07:37:56 -04:00
committed by Cody Henthorne
parent e6399517ee
commit 56244ad873
5 changed files with 24 additions and 40 deletions

View File

@@ -332,12 +332,7 @@ private fun TopAppBar(
offsetY = 0.dp
) {
DropdownMenus.Item(
text = {
Text(
text = stringResource(R.string.StickerManagement_menu_select_packs),
style = MaterialTheme.typography.bodyLarge
)
},
text = { Text(text = stringResource(R.string.StickerManagement_menu_select_packs)) },
onClick = {
onSetMultiSelectModeEnabled(true)
menuController.hide()

View File

@@ -388,7 +388,6 @@ private fun MenuItem(
)
Text(
text = text,
style = MaterialTheme.typography.bodyLarge,
modifier = Modifier.padding(horizontal = 16.dp)
)
}