I'm using react-native-vector-icons in my app. Everything was fine when I was using React-Native 6.2.1. I upgraded to 6.3.0 today. Now all my icons are messed up. I figured the names have changed. I played around with the directory today and got strange results. Here is where I'm getting the listings from: https://oblador.github.io/react-native-vector-icons/
If I pick one with the name "ios-call" it's supposed to show a phone icon, but instead I'm getting an email icon. Some of the icons don't show at all. Others are not effected. I use them in my app like this:
import Ionicons from "react-native-vector-icons/Ionicons";
<Ionicons name='call' size={24} style={{marginRight: 15}}/>
This is really screwing my deadline. Why does this platform always seem erratic with it's changes and upgrades?
Has anyone else had this problem, and if so, can you tell me where to look for a fix?
Thanks in advance.