Génération des pages

This commit is contained in:
Matt Marcha 2018-10-19 11:09:06 +02:00
parent ddcdd29911
commit bd7264f111
27 changed files with 392 additions and 10 deletions

18
src/pages/buy/buy.html Normal file
View file

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

View file

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { BuyPage } from './buy';
@NgModule({
declarations: [
BuyPage,
],
imports: [
IonicPageModule.forChild(BuyPage),
],
})
export class BuyPageModule {}

3
src/pages/buy/buy.scss Normal file
View file

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

25
src/pages/buy/buy.ts Normal file
View file

@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the BuyPage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@IonicPage()
@Component({
selector: 'page-buy',
templateUrl: 'buy.html',
})
export class BuyPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad BuyPage');
}
}

View file

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

View file

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { ContactsPage } from './contacts';
@NgModule({
declarations: [
ContactsPage,
],
imports: [
IonicPageModule.forChild(ContactsPage),
],
})
export class ContactsPageModule {}

View file

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

View file

@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the ContactsPage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@IonicPage()
@Component({
selector: 'page-contacts',
templateUrl: 'contacts.html',
})
export class ContactsPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad ContactsPage');
}
}

View file

@ -1,14 +1,18 @@
<!--
Generated template for the HomePage page.
See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar>
<ion-title>
Ionic Blank
</ion-title>
<ion-title>home</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
The world is your oyster.
<p>
If you get lost, the <a href="http://ionicframework.com/docs/v2">docs</a> will be your guide.
</p>
</ion-content>

View file

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { HomePage } from './home';
@NgModule({
declarations: [
HomePage,
],
imports: [
IonicPageModule.forChild(HomePage),
],
})
export class HomePageModule {}

View file

@ -1,14 +1,25 @@
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the HomePage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@IonicPage()
@Component({
selector: 'page-home',
templateUrl: 'home.html'
templateUrl: 'home.html',
})
export class HomePage {
constructor(public navCtrl: NavController) {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad HomePage');
}
}

View file

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

View file

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { LoginPage } from './login';
@NgModule({
declarations: [
LoginPage,
],
imports: [
IonicPageModule.forChild(LoginPage),
],
})
export class LoginPageModule {}

View file

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

25
src/pages/login/login.ts Normal file
View file

@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the LoginPage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@IonicPage()
@Component({
selector: 'page-login',
templateUrl: 'login.html',
})
export class LoginPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad LoginPage');
}
}

View file

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

View file

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { SearchPage } from './search';
@NgModule({
declarations: [
SearchPage,
],
imports: [
IonicPageModule.forChild(SearchPage),
],
})
export class SearchPageModule {}

View file

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

View file

@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the SearchPage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@IonicPage()
@Component({
selector: 'page-search',
templateUrl: 'search.html',
})
export class SearchPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad SearchPage');
}
}

18
src/pages/send/send.html Normal file
View file

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

View file

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { SendPage } from './send';
@NgModule({
declarations: [
SendPage,
],
imports: [
IonicPageModule.forChild(SendPage),
],
})
export class SendPageModule {}

3
src/pages/send/send.scss Normal file
View file

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

25
src/pages/send/send.ts Normal file
View file

@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the SendPage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@IonicPage()
@Component({
selector: 'page-send',
templateUrl: 'send.html',
})
export class SendPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad SendPage');
}
}

View file

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

View file

@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { TransactionsPage } from './transactions';
@NgModule({
declarations: [
TransactionsPage,
],
imports: [
IonicPageModule.forChild(TransactionsPage),
],
})
export class TransactionsPageModule {}

View file

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

View file

@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the TransactionsPage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@IonicPage()
@Component({
selector: 'page-transactions',
templateUrl: 'transactions.html',
})
export class TransactionsPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad TransactionsPage');
}
}