I have search this topic “toast” in ionic 5, most of example uses press a button to display a toast.
Is there a way to automatic toast in home page when user move from login page into the home page.
below is my toast,
async showToast() {
await this.toastCtrl.create({
message: "Hey! it's a toast",
duration: 2000,
position: 'middle',
buttons: [{
text: 'OK',
handler: () => {
console.log("ok clicked");
}
}]
}).then(res => res.present());
}
1 post - 1 participant