yayan 1 年間 前
コミット
65b0ebb194
1 ファイル変更8 行追加4 行削除
  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))
         )
     }
 }