New about page

This commit is contained in:
Gustavo Maximiliano Cortez 2017-07-27 13:03:11 -03:00
parent f60665a07c
commit 3e35f4ebe4
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
3 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<!--
Generated template for the AboutPage page.
See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar>
<ion-title>About</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
</ion-content>

View File

@ -0,0 +1,3 @@
page-about {
}

17
src/pages/about/about.ts Normal file
View File

@ -0,0 +1,17 @@
import { Component } from '@angular/core';
import { NavController, NavParams } from 'ionic-angular';
@Component({
selector: 'page-about',
templateUrl: 'about.html',
})
export class AboutPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad AboutPage');
}
}