Like this:
// Show modal
const modal = await this.modalCtrl.create({
component: ModalPage
});
modal.present();
// Get returned data
const { data } = await modal.onWillDismiss();
Like this:
// Show modal
const modal = await this.modalCtrl.create({
component: ModalPage
});
modal.present();
// Get returned data
const { data } = await modal.onWillDismiss();