react-native-searchbar icon indicating copy to clipboard operation
react-native-searchbar copied to clipboard

how to import vector icons i can not see them but i did installed them is there a way to import them?

Open lylest opened this issue 6 years ago • 1 comments
trafficstars

lylest avatar Aug 27 '19 16:08 lylest

@lylest Open android/app/build.gradle file and add those lines:

project.ext.vectoricons = [
    iconFontNames: ['MaterialIcons.ttf' ],
]
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

If you want to use other Icons you can add them in 'iconFontNames' array . You can see the lists of vector icons are here: https://oblador.github.io/react-native-vector-icons/

rassemdev avatar Oct 18 '19 17:10 rassemdev