@capacitor/toast
Toast API 提供了一个通知弹出窗口,用于向用户显示重要信息。就像真正的吐司一样!
安装
npm install @capacitor/toast
npx cap sync
PWA 备注
需要 PWA 元素 才能使 Toast 插件正常工作。
示例
import { Toast } from '@capacitor/toast';
const showHelloToast = async () => {
await Toast.show({
text: 'Hello!',
});
};
API
show(...)
show(options: ShowOptions) => Promise<void>
在屏幕上显示一个 Toast
参数 | 类型 |
---|---|
options | ShowOptions |
自 1.0.0
接口
ShowOptions
属性 | 类型 | 描述 | 默认值 | 自 |
---|---|---|---|---|
text | 字符串 | 在 Toast 上显示的文本 | 1.0.0 | |
duration | 'short' | 'long' | Toast 的持续时间,'short'(2000 毫秒)或 'long'(3500 毫秒) | 'short' | 1.0.0 |
position | 'top' | 'center' | 'bottom' | Toast 的位置。在 Android 12 及更高版本中,所有 Toast 都会显示在底部。 | 'bottom' | 1.0.0 |