I’m trying to use the capacitor toast plugin. no errors are occurring but the toast is never shown on the screen.
this is the code:
public async openToast(){
const toast = await this.toastController.create({
message : 'welcome',
duration : 3500
});
toast.present();
}
any help? thanks