To use react-native-vector-icons in our React Native app, we add entries into react-native.config.js
First, we add
module.exports = {
dependencies: {
'react-native-vector-icons': {
platforms: {
ios: null,
},
},
},
};
in react-native.config.js to configure react-native-vector-icons.
Then we run
react-native link react-native-vector-icons
react-native run-android
react-native start
to link react-native-vector-icons in our project with
react-native link react-native-vector-icons
Then we run our app on Android with
react-native run-android