Member-only story
So first thing is to open your terminal or command prompt and navigate to the folder in which your project to be, then enter
react-native init myfontawesomeproject
Once you have created this project there are various packages you will need install to be able to font awesome icons, enter the below on your terminal within your project to install those packages.
npm i --save react-native-svg
npm i --save @fortawesome/fontawesome-svg-core
npm i --save @fortawesome/free-solid-svg-icons
npm i --save @fortawesome/react-native-fontawesome
The ‘fontawesome-svg-core’ package mixes JavaScript with SVG
Once you have ran all of these commands we need to complete the setup of installing these pod packages on iOS so enter the below
cd ios && pod install
If you wish to company/brand icons such as Amazon or Apple’s in your react-native app then you can install the below ( I will be showing an example of this in my tutorial later so if you want to follow my tutorial exactly you…