Kurmanadh Valla
Kurmanadh Valla

Reputation: 44

react-native-vector-icons or @expo/vector-icons not rendering on android device

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

Answers (1)

Ruchi Tiwari
Ruchi Tiwari

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

Related Questions