This commit is contained in:
tiago.kayaya
2021-02-25 11:50:32 +01:00
parent 7cd4a8747d
commit c0167b083a
5 changed files with 20 additions and 11 deletions
+6 -6
View File
@@ -1,9 +1,9 @@
import { Component } from '@angular/core';
import { Platform } from '@ionic/angular';
/* import { SplashScreen } from '@ionic-native/splash-screen/ngx';
/* import { SplashScreen } from '@ionic-native/splash-screen/ngx'; */
import { StatusBar } from '@ionic-native/status-bar/ngx';
*/
@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
@@ -12,16 +12,16 @@ import { StatusBar } from '@ionic-native/status-bar/ngx';
export class AppComponent {
constructor(
private platform: Platform,
/* private splashScreen: SplashScreen,
private statusBar: StatusBar */
/* private splashScreen: SplashScreen, */
private statusBar: StatusBar
) {
this.initializeApp();
}
initializeApp() {
this.platform.ready().then(() => {
/* this.statusBar.styleDefault();
this.splashScreen.hide(); */
this.statusBar.styleDefault();
/* this.splashScreen.hide(); */
});
}
}