Skip to main content

Add FontAwesome Icons in the SideMenu of ionic3+ Apps

· One min read

First go through the below articles
1. How to create a basic ionic3 + mobile application

2. How to add FontAwesome to ionic3+ apps

Steps:

  1. In app.component.ts add icon property in the pages array and add the icon name
export class MyApp {
:
pages: Array;
:

this.pages = [
{ title: 'Home', component: HomePage, icon: "home" },
{ title: 'List', component: ListPage, icon: "list" }
];

:
}

2.Add tag in the app.html

_FILES

Refer the code files in Github

_