Open adrientetar opened 3 years ago
Thanks, we could look into this!
Currently the library is usable in Jetpack Compose. Because all the icons in the Android library are in the Vector Drawable format, you could load them by calling painterResource()
in Jetpack Compose:
Icon(
painter = painterResource(id = R.drawable.ic_fluent_...),
contentDescription = "Localized description"
)
There's a nice Material icons library in Jetpack Compose that makes icons accessible from code:
https://developer.android.com/reference/kotlin/androidx/compose/material/icons/package-summary
Would be great to have the same but with Fluent icons!