multiple toast in ionic 4 code example
Example: ionic toast stacked
showOnceToast() {
this.toastController.dismiss().then((obj) => {
}).catch(() => {
}).finally(() => {
this.showToast();
});
}Copy
showOnceToast() {
this.toastController.dismiss().then((obj) => {
}).catch(() => {
}).finally(() => {
this.showToast();
});
}Copy