import {App, Page, NavController} from 'ionic/ionic'; // // Tab 1 // @Page({ template: ` Heart Tab 1 Item {{i}} {{i}} {{i}} {{i}} ` }) class Tab1 { constructor(nav: NavController) { this.nav = nav; this.items = []; for(var i = 1; i <= 250; i++) { this.items.push(i); } } } // // Tab 2 // @Page({ template: ` Schedule

{{session.name}} {{session.name}} {{session.name}}

{{session.location}} {{session.location}} {{session.location}}

` }) class Tab2 { constructor() { this.sessions = []; for(var i = 1; i <= 250; i++) { this.sessions.push({ name: 'Name ' + i, location: 'Location: ' + i }); } } } // // Tab 3 // @Page({ template: ` Stopwatch

Tab 3

` }) class Tab3 {} @App({ template: ` Menu `, config: { navbarStyle: 'secondary', tabbarStyle: 'secondary' } }) export class TabsPage { constructor() { this.root1 = Tab1; this.root2 = Tab2; this.root3 = Tab3; } }