Excellence kawej
07/07/2025, 10:44 AMUnresolved reference 'RemoveRedEye'.
Icon(
modifier = Modifier.fillMaxSize(),
imageVector = Icons.Filled.RemoveRedEye,
contentDescription = "Voir le produit",
tint = Color.White
)
While others are well-imported, like this one:
Icon(
modifier = Modifier.fillMaxSize(),
imageVector = Icons.Outlined.Delete,
contentDescription = "Supprimer du panier",
tint = Color.Red
)
Chrimaeon
07/07/2025, 10:47 AMdependencies
?Chrimaeon
07/07/2025, 10:49 AMA separate library,https://developer.android.com/reference/kotlin/androidx/compose/material/icons/package-summary, contains the full set of Material icons. Due to the very large size of this library, make sure to use R8/Proguard to strip unused icons if you are including this library as a direct dependency. Alternatively you can make a local copy (by copy and pasting) the icon(s) you wish to keep, or using Android Studio’s ‘Import vector asset’ feature.androidx.compose.material:material-icons-extended
Excellence kawej
07/07/2025, 10:51 AMimport androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.Delete
Chrimaeon
07/07/2025, 10:54 AMandroidx.compose.material:material-icons-extended
as a dependency to your project? you shared the imports in your source code.Excellence kawej
07/07/2025, 10:55 AMExcellence kawej
07/07/2025, 10:57 AMChrimaeon
07/07/2025, 11:07 AMephemient
07/07/2025, 3:20 PMandroidx.compose.material:material-icons-core
and androidx.compose.material:material-icons-extended
are published for Android onlyephemient
07/07/2025, 3:21 PMorg.jetbrains.compose.material:material-icons-core
and org.jetbrains.compose.material/material-icons-extended
for more (but not all) multiplatform targetsephemient
07/07/2025, 3:23 PMephemient
07/07/2025, 3:28 PMephemient
07/07/2025, 3:29 PMExcellence kawej
07/08/2025, 10:20 AM