implementation "androidx.compose.material:material-icons-extended:$compose_version"
is included on my build.graddle
file with the latest stable realease of Compose (1.1.1).
However, I am unable to reference any of the NetworkWifiXBar icons (e.g. NetworkWifi1Bar ) as seen here.
I had the understanding that all icons were included with material-icons-extended
.
Is this an issue on my end or are these not included?
You can use the below Compose Material dependencies updated on January-31, 2025:
Stable Release:
Groovy
: implementation "androidx.compose.material:material-icons-extended:1.7.7"
Kotlin DSL
:
implementation("androidx.compose.material:material-icons-extended:1.7.7")
Beta Release:
Groovy
: implementation "androidx.compose.material:material-icons-extended:1.8.0-beta01"
Kotlin DSL
:
implementation("androidx.compose.material:material-icons-extended:1.8.0-beta01")