跳过内容

开始使用

GitHub

您可以使用我们的AI辅助设置来安装插件。将Capgo技能添加到您的AI工具中,使用以下命令:

终端窗口
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins

然后使用以下提示:

Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-pretty-toast` plugin in my project.

如果您更喜欢手动设置,请按照以下命令安装插件,并遵循以下平台特定的说明:

终端窗口
npm install @capgo/capacitor-pretty-toast
npx cap sync
import { toast } from '@capgo/capacitor-pretty-toast';

显示一个 Toast

标题:显示一个 Toast
toast.success('Saved', {
message: 'Your changes are ready.',
});

更新一个加载中 Toast

标题:更新一个加载中 Toast
const id = toast.loading('Uploading', {
message: 'Waiting for the server response.',
});
setTimeout(() => {
toast.update(id, {
title: 'Upload complete',
message: 'The file was stored successfully.',
icon: 'checkmark.circle.fill',
autoDismiss: true,
});
}, 1500);

跟踪一个 Promise

标题:跟踪一个 Promise
await toast.promise(uploadFile(), {
loading: {
title: 'Uploading',
message: 'Keep the app open while the file is sent.',
},
success: 'Uploaded',
error: 'Upload failed',
});

使用 icon 用于一个符号名称或原始 SVG 标记:

toast.info('New message', {
icon: 'message.fill',
message: 'Open the inbox to reply.',
});

用于 URI 类似图像。它支持 iconSource 绝对文件路径,或 https://, http://, file://, data:, blob:复制到剪贴板 { uri }.

toast.show({
title: 'Profile updated',
message: 'Your avatar changed.',
iconSource: 'https://example.com/avatar.png',
});

iconSource 继续从 Getting Started icon.

标题为“继续从 Getting Started”

如果您正在使用

Getting Started __CAPGO_KEEP_0__ 为native插件工作做好规划,连接它与 Capgo 插件目录 产品工作流程在 Capgo 插件目录中 Capacitor 插件由 Capgo 产品工作流程在 Capacitor 插件由 Capgo 中 添加或更新插件 添加或更新插件的实现细节 Ionic企业插件替代品 产品工作流程在 Ionic企业插件替代品中,以及 Capgo 本机构建 产品工作流程在 Capgo 本机构建中。