File tree Expand file tree Collapse file tree 4 files changed +62
-0
lines changed Expand file tree Collapse file tree 4 files changed +62
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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 { }
Original file line number Diff line number Diff line change
1
+ page-timeline {
2
+
3
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments