Reputation: 44
In my expo project which has not been ejected,Icons are not being rendered on android.I installed the package using npm.I cons are being rendered on web browser but not on android .
npm i react-native-vector-icons
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
<MaterialCommunityIcons name="plus-box" color={color} size={26} />
Upvotes: 2
Views: 2119
Reputation: 261
While using react-native-vector-icons no curly brackets
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'
While using @expo/vector-icons
import { MaterialCommunityIcons } from '@expo/vector-icons';
Upvotes: 1