[Kotlin] Android Material Icon
라이브러리 설치
implementation "androidx.compose.material:material-icons-extended:$compose_ui_version"
아이콘 사용사례
Icon(
imageVector = Icons.Default.VolumeUp,
contentDescription = "Water Sound Check",
tint = Color.White,
)
아이콘 종류
- Icons.Default(Icons.Filled)
- Icons.Outlined
정도만 알아도 충분할 것 같다.