Created
April 9, 2018 18:40
-
-
Save iyasilias/484e138f3c1487286d0d0b002f6eab59 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Generated template for the DPage page. | |
See http://ionicframework.com/docs/components/#navigation for more info on | |
Ionic pages and navigation. | |
--> | |
<ion-header> | |
<ion-navbar> | |
<ion-title>D</ion-title> | |
</ion-navbar> | |
</ion-header> | |
<ion-content padding> | |
</ion-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModule } from '@angular/core'; | |
import { IonicPageModule } from 'ionic-angular'; | |
import { DPage } from './d'; | |
@NgModule({ | |
declarations: [ | |
DPage, | |
], | |
imports: [ | |
IonicPageModule.forChild(DPage), | |
], | |
}) | |
export class DPageModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
page-d { | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
import { IonicPage, NavController, NavParams } from 'ionic-angular'; | |
/** | |
* Generated class for the DPage page. | |
* | |
* See https://ionicframework.com/docs/components/#navigation for more info on | |
* Ionic pages and navigation. | |
*/ | |
@IonicPage() | |
@Component({ | |
selector: 'page-d', | |
templateUrl: 'd.html', | |
}) | |
export class DPage { | |
constructor(public navCtrl: NavController, public navParams: NavParams) { | |
} | |
ionViewDidLoad() { | |
console.log('ionViewDidLoad DPage'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment