yayan 1 year ago
parent
commit
65b0ebb194
1 changed files with 8 additions and 4 deletions
  1. 8 4
      app/src/main/java/io/nexilis/alpha/ui/main/Chat.kt

+ 8 - 4
app/src/main/java/io/nexilis/alpha/ui/main/Chat.kt

@@ -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))
         )
     }
 }