Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. import { Component } from '@angular/core';
  2. import { Platform } from 'ionic-angular';
  3. import { StatusBar, Splashscreen } from 'ionic-native';
  4.  
  5. import { HomePage } from '../pages/home/home';
  6. import { ContactosPage } from '../pages/contactos/contactos';
  7.  
  8.  
  9. @Component({
  10. templateUrl: 'app.html'
  11. })
  12. export class MyApp {
  13. rootPage = ContactosPage;
  14.  
  15. constructor(platform: Platform) {
  16. platform.ready().then(() => {
  17. // Okay, so the platform is ready and our plugins are available.
  18. // Here you can do any higher level native things you might need.
  19. StatusBar.styleDefault();
  20. Splashscreen.hide();
  21. });
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement