Hi ! I am missing many icons listed there : <https...
# compose
l
Hi ! I am missing many icons listed there : https://material.io/resources/icons/?style=baseline. Do I need to install another package in my build.gradle than the ones set up when creating my new Compose project ? It seems to me that yes, but I can't remember where I read it, or if it was for another framework than Jetpack Compose.
Here are my dependencies :
Copy code
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.3.2'
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.2.1'
    implementation "androidx.compose.ui:ui:$compose_version"
    implementation "androidx.compose.material:material:$compose_version"
    implementation "androidx.ui:ui-tooling:$compose_version"
    def nav_compose_version = "1.0.0-alpha01"
    implementation "androidx.navigation:navigation-compose:$nav_compose_version"
    implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-beta01'
    testImplementation 'junit:junit:4.13.1'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
h
androidx.compose.material:material-icons-extended:1.0.0-alpha07
👍 1
l
Thank you very much : it is the extension I've read. I'm synchronizing my gradle.build, but I bet this will work fine. 😃