Icons are an indispensable part of almost any app, particularly in navigation and buttons. Similar to Expo's font helper, covered in the previous chapter, Expo also has an icon helper that makes adding icon fonts much less of a hassle than using vanilla React Native. In this recipe, we'll see how to use the icon helper module with the popular FontAwesome and Ionicons icon font libraries.
Using font icons
Getting ready
We'll need to make a new project for this recipe. Let's name this project font-icons.
How to do it...
- We'll begin by opening...