This is the code I’m using to open the modal:
async presentModal() {
const modal = await this.modalCtrl.create({
component: TestModalComponent
});
return await modal.present();
}
This is the code I’m using to open the modal:
async presentModal() {
const modal = await this.modalCtrl.create({
component: TestModalComponent
});
return await modal.present();
}