I'm looking to use the ionViewWillLeave method to prevent the page from closing and instead display a pop-up confirmation (using toast.service) without altering the form.
ionViewWillLeave(){
this.toast.toastError('Do you want to save your changes?', 20000, [{
side: 'end',
text: 'Yes',
handler: () => {
}
},
{
side: 'end',
text: 'No',
handler: () => {
}
}
]);
}