import {NavController, NavParams} from 'ionic/ionic';
import {Page, ViewController} from 'ionic/ionic';
import {forwardRef} from 'angular2/angular2';
import * as helpers from '../../helpers';
@Page({
template: '' +
'' +
'Tabs' +
'' +
'' +
'',
directives: [forwardRef(() => helpers.AndroidAttribute)],
})
class TabIconTextCtrl {
constructor() {
}
}
@Page({
template:
'' +
'' +
'' +
'' +
'' +
'',
})
export class IconTextPage {
constructor() {
this.tabOne = TabIconTextCtrl;
this.tabTwo = TabIconTextCtrl;
this.tabThree = TabIconTextCtrl;
this.tabFour = TabIconTextCtrl;
}
}