|
@@ -268,28 +268,32 @@ fun Attachments() {
|
|
|
onClick = { },
|
|
|
leadingIcon = {
|
|
|
Icon(imageVector = Icons.Default.Camera, contentDescription = "")
|
|
|
- }
|
|
|
+ },
|
|
|
+ colors = MenuDefaults.itemColors(leadingIconColor = Color.Red)
|
|
|
)
|
|
|
DropdownMenuItem(
|
|
|
text = { Text(text = "Gallery") },
|
|
|
onClick = { },
|
|
|
leadingIcon = {
|
|
|
Icon(imageVector = Icons.Default.Image, contentDescription = "")
|
|
|
- }
|
|
|
+ },
|
|
|
+ colors = MenuDefaults.itemColors(leadingIconColor = Color(0xFF800080))
|
|
|
)
|
|
|
DropdownMenuItem(
|
|
|
text = { Text(text = "Documents") },
|
|
|
onClick = { },
|
|
|
leadingIcon = {
|
|
|
Icon(imageVector = Icons.Default.AttachFile, contentDescription = "")
|
|
|
- }
|
|
|
+ },
|
|
|
+ colors = MenuDefaults.itemColors(leadingIconColor = Color.Blue)
|
|
|
)
|
|
|
DropdownMenuItem(
|
|
|
text = { Text(text = "Audio") },
|
|
|
onClick = { },
|
|
|
leadingIcon = {
|
|
|
Icon(imageVector = Icons.Default.AudioFile, contentDescription = "")
|
|
|
- }
|
|
|
+ },
|
|
|
+ colors = MenuDefaults.itemColors(leadingIconColor = Color(0xFFFFA500))
|
|
|
)
|
|
|
}
|
|
|
}
|