From 0e46af7f03533fdfd25b0c9cd0c9a437380303d6 Mon Sep 17 00:00:00 2001 From: Abhishek Sharma Date: Jun 06 2018 08:11:42 +0000 Subject: Add More and Notifications Page --- diff --git a/src/pages/more/more.html b/src/pages/more/more.html new file mode 100644 index 0000000..7fe188f --- /dev/null +++ b/src/pages/more/more.html @@ -0,0 +1,18 @@ + + + + + more + + + + + + + + diff --git a/src/pages/more/more.module.ts b/src/pages/more/more.module.ts new file mode 100644 index 0000000..7e818d1 --- /dev/null +++ b/src/pages/more/more.module.ts @@ -0,0 +1,13 @@ +import { NgModule } from '@angular/core'; +import { IonicPageModule } from 'ionic-angular'; +import { MorePage } from './more'; + +@NgModule({ + declarations: [ + MorePage, + ], + imports: [ + IonicPageModule.forChild(MorePage), + ], +}) +export class MorePageModule {} diff --git a/src/pages/more/more.scss b/src/pages/more/more.scss new file mode 100644 index 0000000..dfcf761 --- /dev/null +++ b/src/pages/more/more.scss @@ -0,0 +1,3 @@ +page-more { + +} diff --git a/src/pages/more/more.ts b/src/pages/more/more.ts new file mode 100644 index 0000000..16483d8 --- /dev/null +++ b/src/pages/more/more.ts @@ -0,0 +1,25 @@ +import { Component } from '@angular/core'; +import { IonicPage, NavController, NavParams } from 'ionic-angular'; + +/** + * Generated class for the MorePage page. + * + * See https://ionicframework.com/docs/components/#navigation for more info on + * Ionic pages and navigation. + */ + +@IonicPage() +@Component({ + selector: 'page-more', + templateUrl: 'more.html', +}) +export class MorePage { + + constructor(public navCtrl: NavController, public navParams: NavParams) { + } + + ionViewDidLoad() { + console.log('ionViewDidLoad MorePage'); + } + +} diff --git a/src/pages/notifications/notifications.html b/src/pages/notifications/notifications.html new file mode 100644 index 0000000..388eedb --- /dev/null +++ b/src/pages/notifications/notifications.html @@ -0,0 +1,18 @@ + + + + + notifications + + + + + + + + diff --git a/src/pages/notifications/notifications.module.ts b/src/pages/notifications/notifications.module.ts new file mode 100644 index 0000000..0862bad --- /dev/null +++ b/src/pages/notifications/notifications.module.ts @@ -0,0 +1,13 @@ +import { NgModule } from '@angular/core'; +import { IonicPageModule } from 'ionic-angular'; +import { NotificationsPage } from './notifications'; + +@NgModule({ + declarations: [ + NotificationsPage, + ], + imports: [ + IonicPageModule.forChild(NotificationsPage), + ], +}) +export class NotificationsPageModule {} diff --git a/src/pages/notifications/notifications.scss b/src/pages/notifications/notifications.scss new file mode 100644 index 0000000..b3c6a89 --- /dev/null +++ b/src/pages/notifications/notifications.scss @@ -0,0 +1,3 @@ +page-notifications { + +} diff --git a/src/pages/notifications/notifications.ts b/src/pages/notifications/notifications.ts new file mode 100644 index 0000000..47983e3 --- /dev/null +++ b/src/pages/notifications/notifications.ts @@ -0,0 +1,25 @@ +import { Component } from '@angular/core'; +import { IonicPage, NavController, NavParams } from 'ionic-angular'; + +/** + * Generated class for the NotificationsPage page. + * + * See https://ionicframework.com/docs/components/#navigation for more info on + * Ionic pages and navigation. + */ + +@IonicPage() +@Component({ + selector: 'page-notifications', + templateUrl: 'notifications.html', +}) +export class NotificationsPage { + + constructor(public navCtrl: NavController, public navParams: NavParams) { + } + + ionViewDidLoad() { + console.log('ionViewDidLoad NotificationsPage'); + } + +}