import { Platform } from ‘@ionic/angular’;
constructor(
private platform: Platform,
) {
this.initialize();
}
initialize() {
this.platform.ready().then(() => {
console.log(“App is ready to run”);
});
}
1 post - 1 participant
import { Platform } from ‘@ionic/angular’;
constructor(
private platform: Platform,
) {
this.initialize();
}
initialize() {
this.platform.ready().then(() => {
console.log(“App is ready to run”);
});
}
1 post - 1 participant