Initial commit
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
import { NgModule, ErrorHandler } from '@angular/core';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { HttpModule } from '@angular/http';
|
||||
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
|
||||
import { MyApp } from './app.component';
|
||||
import { IonicSwipeAllModule } from 'ionic-swipe-all';
|
||||
import { Groundr } from './app.component';
|
||||
|
||||
import { AboutPage } from '../pages/about/about';
|
||||
import { ContactPage } from '../pages/contact/contact';
|
||||
import { HomePage } from '../pages/home/home';
|
||||
import { ChatPage } from '../pages/chat/chat';
|
||||
import { GridPage } from '../pages/grid/grid';
|
||||
import { LightboxPage } from '../pages/lightbox/lightbox';
|
||||
import { MessagesPage } from '../pages/messages/messages';
|
||||
import { ProfilePage } from '../pages/profile/profile';
|
||||
import { TabsPage } from '../pages/tabs/tabs';
|
||||
|
||||
import { StatusBar } from '@ionic-native/status-bar';
|
||||
@@ -13,22 +17,34 @@ import { SplashScreen } from '@ionic-native/splash-screen';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
MyApp,
|
||||
AboutPage,
|
||||
ContactPage,
|
||||
HomePage,
|
||||
Groundr,
|
||||
ChatPage,
|
||||
GridPage,
|
||||
LightboxPage,
|
||||
MessagesPage,
|
||||
ProfilePage,
|
||||
TabsPage
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
IonicModule.forRoot(MyApp)
|
||||
HttpModule,
|
||||
IonicSwipeAllModule,
|
||||
IonicModule.forRoot(Groundr, {
|
||||
iconMode: 'ios',
|
||||
modalEnter: 'modal-slide-in',
|
||||
modalLeave: 'modal-slide-out',
|
||||
tabsPlacement: 'bottom',
|
||||
pageTransition: 'ios-transition'
|
||||
})
|
||||
],
|
||||
bootstrap: [IonicApp],
|
||||
entryComponents: [
|
||||
MyApp,
|
||||
AboutPage,
|
||||
ContactPage,
|
||||
HomePage,
|
||||
Groundr,
|
||||
ChatPage,
|
||||
GridPage,
|
||||
LightboxPage,
|
||||
MessagesPage,
|
||||
ProfilePage,
|
||||
TabsPage
|
||||
],
|
||||
providers: [
|
||||
|
||||
Reference in New Issue
Block a user