ReactNative Vector Icon Usage For Android
ReactNative provide us third party library react-native-vector-icons by using which we can use built_in icons for different platforms(android,windows,ios). Installation For installing react-native-vector-icons in android: Run: npm install react-native-vector-icons –save Android Edit android/settings.gradle to look like this (without the +): rootProject.name = ‘MyApp’ include ‘:app’ + include ‘:react-native-vector-icons’ + project(‘:react-native-vector-icons’).projectDir = new File(rootProject.projectDir, ‘../node_modules/react-native-vector-icons/android’) Edit android/app/build.gradle (note: app folder) to look like this: apply plugin: […]
ReactNative Vector Icon Usage For Android Read More »
