Files
doneit-web/src/app/app.component.ts
T
tiago.kayaya b1fde29edd save
2021-02-09 13:16:41 +01:00

28 lines
668 B
TypeScript

import { Component } from '@angular/core';
import { Platform } from '@ionic/angular';
/* import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
*/
@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.scss']
})
export class AppComponent {
constructor(
private platform: Platform,
/* private splashScreen: SplashScreen,
private statusBar: StatusBar */
) {
this.initializeApp();
}
initializeApp() {
this.platform.ready().then(() => {
/* this.statusBar.styleDefault();
this.splashScreen.hide(); */
});
}
}