How to create tabs in blank ionic 4 project
How to create tabs in blank project in Ionic 4 In this post we will learn about how can we add tabs in blank ionic project. Step 1 :- first create a blank ionic project using below command :- ionic start myApp blank Step 2 :- now I am creating a page which name is "home" using below command :- ionic g page home Step 3 :- now I will create 3 pages which name will be "profile", "notification", "setting" inside "home" folder using below command :- ionic g page home/profile ionic g page home/notification ionic g page home/setting Step 4 :- now I will open "home.page.html" file and put tabs code :- <ion-tabs> <ion-tab-bar slot="bottom"> <ion-tab-button tab="profile"> <ion-label>Profile</ion-label> <ion-icon name=""></ion-icon> </ion-tab-button> ...