This file contains hidden or 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 { IonicModule } from 'ionic-angular'; | |
@NgModule({ | |
imports: [IonicModule], | |
declarations: [], | |
entryComponents: [], | |
providers: [] | |
}) | |
export class Form1Module { |
This file contains hidden or 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 { IonicModule } from 'ionic-angular'; | |
@NgModule({ | |
imports: [IonicModule], | |
declarations: [], | |
entryComponents: [], | |
providers: [] | |
}) | |
export class Form2Module { |
This file contains hidden or 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 { FormGroup } from '@angular/forms'; | |
@Component({ | |
templateUrl: '', | |
providers: [] | |
}) | |
export class Form1Page { | |
form: FormGroup; |
This file contains hidden or 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 { FormGroup } from '@angular/forms'; | |
@Component({ | |
templateUrl: '', | |
providers: [] | |
}) | |
export class Form2Page { | |
form: FormGroup; |
This file contains hidden or 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 { Form1Module } from '../pages/form1/form1.module'; | |
import { Form2Module } from '../pages/form2/form2.module'; | |
Form1Module, | |
Form2Module |
This file contains hidden or 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 { Form1Page} from './form1.page'; | |
declarations: [Form1Page], | |
entryComponents: [Form1Page], |
This file contains hidden or 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 { Form2Page} from './form2.page'; | |
declarations: [Form2Page], | |
entryComponents: [Form2Page], |
This file contains hidden or 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
templateUrl: 'form1.html', |
This file contains hidden or 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
templateUrl: 'form2.html', |
This file contains hidden or 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 { Form1Page } from '../pages/form1/form1.page'; | |
import { Form2Page } from '../pages/form2/form2.page'; | |
{ title: 'Form 1', component: Form1Page, icon: 'football' }, | |
{ title: 'Form 2', component: Form2Page, icon: 'film' }, |
OlderNewer