This series intends to show how I build an app to serve content from my WordPress blog by using react-native. Since my blog is talking about react-native, the series and the articles are interconnected. We will learn how to set-up many packages that make our lives comfortable and learn how to deal with WordPress APIs. Here, the most prominent features talked about in the book are the dark theme, offline mode, infinite scroll and many more. You can discover much more in this series. this inspiration to do this tutorial series came from the from instamobile React Native App Templates In case of wanting to learn from the beginning, all the previous parts for this tutorial series are available below: Build WordPress Client App with React Native #1: Overview Build WordPress Client App with React Native #2: Setting Up Your Environment Build WordPress Client App with React Native #3: Handle Navigation with React navigation Next, we need to install the vector icons package. In order to install this package, we can run the following command: yarn add react-native-vector-icons Then, perform the same action that we perform before while installing other packages for both the android and iOS platforms. For Android, react-native link react-native-vector-icons For iOS, cd ios ; pod install And for the iOS platform, we need to add icon to the project by manually. In order to do that, we need to open ios for our project with Xcode then add Font folder to project as shown in the screenshot below: Then, we need to open Info.plist and add font to this file as shown in the code snippet below: <key>UIAppFonts< string> <string>EvilIcons.ttf< string> <string>FontAwesome5_Brands.ttf< string> <string>Foundation.ttf< string> <string>MaterialCommunityIcons.ttf< string> <string>Zocial.ttf< array> /key> <array> <string>AntDesign.ttf</ Entypo.ttf < > string </ > string /string> <string>Feather.ttf</ FontAwesome.ttf < > string </ > string /string> <string>FontAwesome5_Regular.ttf</ FontAwesome5_Solid.ttf < > string </ > string /string> <string>Ionicons.ttf</ MaterialIcons.ttf < > string </ > string /string> <string>SimpleLineIcons.ttf</ Octicons.ttf < > string </ > string /string> </ As a result, the Info.plist file will look as shown in the screen shown below: Now, we need to add the icons to our bottom tab navigator. For that, we are going to use the method and return the icon template. But first, we need to import the package into our file as shown in the code snippet below: tabBarIcon react-native-vector-icons App.js Ionicons ; import from 'react-native-vector-icons' Then, we are going to add the icons to the bottom tab navigator as shown in the code snippet below: DashboardTabNavigator = createBottomTabNavigator( { : { : Home, : { : , : <Ionicons name= size={ } />, }, }, : { : Categories, : { : , : <Ionicons name= size={ } />, }, }, : { : Bookmark, : { : , : <Ionicons name= size={ } />, }, }, : { : Setting, : { : , : <Ionicons name= size={ } />, }, }, }, { : { {routeName} = navigation.state.routes[navigation.state.index]; { : routeName }; }, }, ); const HomePage screen navigationOptions tabBarLabel 'Home' tabBarIcon => () "md-home" 30 Categories screen navigationOptions tabBarLabel 'Categories' tabBarIcon => () "md-apps" 30 Bookmark screen navigationOptions tabBarLabel 'BookMark' tabBarIcon => () "ios-bookmark" 30 Setting screen navigationOptions tabBarLabel 'Setting' tabBarIcon => () "md-settings" 30 navigationOptions ( ) => {navigation} const return headerTitle Now, if we re-run the project in our respective platform emulators, we will get the following result: Hence, we have finally set up the bottom tab navigator along with navigation to different screens. Summary In this chapter, we learned how to set up the vector icons package and use it along with our navigation configuration to set up the bottom tap bar icons.