Skip to content

Commit d921d0f

Browse files
committed
timeline page stub
1 parent 98d2622 commit d921d0f

File tree

4 files changed

+62
-0
lines changed

4 files changed

+62
-0
lines changed

src/pages/list/timeline/timeline.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!--
2+
Generated template for the TimelinePage page.
3+
4+
See http://ionicframework.com/docs/components/#navigation for more info on
5+
Ionic pages and navigation.
6+
-->
7+
<ion-header>
8+
9+
<ion-navbar>
10+
<ion-title>timeline</ion-title>
11+
</ion-navbar>
12+
13+
</ion-header>
14+
15+
16+
<ion-content padding>
17+
18+
</ion-content>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { TimelinePage } from './timeline';
2+
import { NgModule } from '@angular/core';
3+
import { IonicPageModule } from 'ionic-angular';
4+
5+
@NgModule({
6+
declarations: [
7+
TimelinePage,
8+
],
9+
imports: [
10+
IonicPageModule.forChild(TimelinePage),
11+
],
12+
exports: [
13+
TimelinePage
14+
]
15+
})
16+
17+
export class SlidingItemPageModule { }

src/pages/list/timeline/timeline.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
page-timeline {
2+
3+
}

src/pages/list/timeline/timeline.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { Component } from '@angular/core';
2+
import { NavController, NavParams } from 'ionic-angular';
3+
4+
/**
5+
* Generated class for the TimelinePage page.
6+
*
7+
* See http://ionicframework.com/docs/components/#navigation for more info
8+
* on Ionic pages and navigation.
9+
*/
10+
11+
@Component({
12+
selector: 'page-timeline',
13+
templateUrl: 'timeline.html',
14+
})
15+
export class TimelinePage {
16+
17+
constructor(public navCtrl: NavController, public navParams: NavParams) {
18+
}
19+
20+
ionViewDidLoad() {
21+
console.log('ionViewDidLoad TimelinePage');
22+
}
23+
24+
}

0 commit comments

Comments
 (0)