Issue
I'm following this doc about Modal in Ionic Angular (https://ionicframework.com/docs/api/modal). I've found this problem and cannot figure out the way to solve.
I'm currently using this version: @ionic/app-scripts : 3.2.4
import { IonicPage, NavController, NavParams, ModalController } from 'ionic-angular';
dismiss() {
this.modalController.dismiss({
'dismissed': true
});
}
Error:
Property 'dismiss' does not exist on type 'ModalController'.ts(2339)
Solution
Try changing your import to this:
import { ModalController } from '@ionic/angular';
Answered By - zeropsi
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.