April 2018
Intermediate to advanced
390 pages
8h 46m
English
Here are the instructions:
$ ionic start PlatformStylesApp blank $ cd PlatformStylesApp
import { NgModule } from '@angular/core'; import { IonicApp, IonicModule } from 'ionic-angular'; import { MyApp } from './app.component'; import { HomePage } from '../pages/home/home'; @NgModule({ declarations: [ MyApp, HomePage ], imports: [ IonicModule.forRoot(MyApp, { backButtonText: 'Go Back', iconMode: 'md', modalEnter: 'modal-slide-in', modalLeave: 'modal-slide-out', tabbarPlacement: 'bottom', pageTransition: 'ios', }) ], bootstrap: [IonicApp], entryComponents: [ MyApp, ...