Hi all! Do you know if there is a way to get all t...
# compose
a
Hi all! Do you know if there is a way to get all the material icons into my app? I want to allow the user to choose any icon from the categories(filled, rounded, sharp, etc.) I was considering using reflection but I think that would consume a lot of time and resources
1
m
Don't know if that's what you ask for, but for all material icons you have to add a dependency in gradle -
implementation(compose.materialIconsExtended)
a
Yes I know how to get one icon when coding (Icons.Filled.Search), but I want to get a list of all the available icons and allow the users to select whatever they want in runtime does that make sense?
1