Solving the issue: Expo Vector icons not showing in Expo 35 or higher

Tiempo de lectura: < 1 minuto

Cuando actualizamos a la versión de Expo 35 o 36 o superior, expo-vector no es capaz de mostrar los iconos en Android.

Snow - pexels

We need to do the following to solve it:

We need to make sure we have the correct versions according to Expo.

In my case:

 "@expo/vector-icons": "^14.1.0", "expo": "~53.0.23"

We need to have the React Native Vector Icons library installed.

"react-native-vector-icons": "^10.3.0",

And finally, it turns out that in higher versions for Android, it asks for access to the internal memory. We must include the expo-file-system library.

"expo-file-system": "~18.1.11"

With all these libraries included, it should work without any problems again.

Leave a Comment