David W
02/24/2022, 12:54 AMDropdownMenuItem(
onClick = {...}) {
Icon(
painter = painterResource(item.iconPath),
modifier = Modifier.padding(end = 4.dp),//.size(24.dp),
contentDescription = null
)
Text(
text = item.text
)
}
}
.size
commented out = left, wrapped.
not commented out = right, not wrapped.
This is on Compose 1.1.0-rc01
, but also happens on 1.0.1
.Albert Chang
02/24/2022, 3:14 AM