


The Toast API provides a notification pop up for displaying important information to a user. Just like real toast!
PWA Elements are required for Toast plugin to work.
import { Plugins } from '@capacitor/core';
const { Toast } = Plugins;
async show() {
  await Toast.show({
    text: 'Hello!'
  });
}show(options: ToastShowOptions) => Promise<void>| Param | Type | 
|---|---|
| options | ToastShowOptions | 
| Prop | Type | Description | 
|---|---|---|
| text | string | |
| duration | "short" | "long" | Duration of the toast, either ‘short’ (2000ms, default) or ‘long’ (3500ms) | 
| position | "center" | "bottom" | "top" |