Hi there, I want to display an Icon from Material Community Designs. It is called chevron-triple-left but it doesnt get displayed it only shows a question mark. Other Icons work tho - for example chevron-left.
I have the same problem. I'm trying to use home-import-outline in a project but for some reason it doesn't work. Even though it is in the github project: https://github.com/oblador/react-native-vector-icons/blob/ba1e17797956314b1ade532cb83f965f2aa9db70/glyphmaps/MaterialCommunityIcons.json#L2164
The same thing happens to me with palette-outline. I had opened an issue (#1057) but it was not answered.
Hello,
If you are using react-native version 0.60++ then it must be the linking problem!
I was facing same after updating react-native, but solved by this, Follow my instructions.
android/app/build.gradle add this at the end of file => apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"It must be work now!..
You can see the example below
https://aboutreact.com/react-native-vector-icons/
SO there is actually no help here ? :D I mean I still have this issue and I am not using RN 0.60. Can someone actually provide a fix for this ? I am using expo but somehow Google's icons dont work. I have a chevron-double icon that is made from the communtiy and it works great but the chevron-triple from google doesnt work...
After trying it with @mdi/react and @mdi/js and importing the icons this was I get this errors:
`Invariant Violation: View config not found for name path. Make sure to start component names with a capital letter ...
Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in %s.%s, the componentWillUnmount method,
`
Most helpful comment
Hello,
If you are using react-native version 0.60++ then it must be the linking problem!
I was facing same after updating react-native, but solved by this, Follow my instructions.
android/app/build.gradleadd this at the end of file =>apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"It must be work now!..