I have a problem, my tags are gone. They just do not show up
tabs.ts
import { Component } from '@angular/core';
import { HomePage } from '../home/home';
import { SobrePage } from '../sobre/sobre';
@Component({
templateUrl: 'tabs.html'
})
export class TabsPage {
tab1Root = HomePage;
tab2Root = SobrePage;
//tab3Root = AreaPage;
constructor() {
}
}
tabs.html
<ion-tabs color="primary" >
<ion-tab [root]="tab1Root" tabTitle="Home" tabIcon="home">Principal</ion-tab>
<ion-tab [root]="tab2Root" tabTitle="Sobre" tabIcon="information-circle">Sobre</ion-tab>
<!--<ion-tab [root]="tab3Root" tabTitle="Praticar" tabIcon="ios-school-outline">Praticar</ion-tab> -->
</ion-tabs>