What is the icons package for jetpack compose? I h...
# compose
g
What is the icons package for jetpack compose? I have implementation “androidx.compose.materialmaterial1.0.0-beta03” but I cant find icons like import androidx.compose.material.icons.filled.NavigateBefore
z
you need the icons dependencies listed here
Copy code
// Material design icons
    implementation 'androidx.compose.material:material-icons-core:1.0.0-beta01'
    implementation 'androidx.compose.material:material-icons-extended:1.0.0-beta01'
g
Oh thanks I missed the extended.
c
The icons-extended got me in the past too. 😄