Getting Started
このプラグインのインストールステップと全マークダウンガイドを含むセットアッププロンプトをコピーします。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-pretty-toast`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/pretty-toast/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
インストール
インストールセクションnpm install @capgo/capacitor-pretty-toastnpx cap syncインポート
インポートセクションimport { toast } from '@capgo/capacitor-pretty-toast';トーストを表示
「トーストを表示」のセクションtoast.success('Saved', { message: 'Your changes are ready.',});ロード中のトーストを更新
「ロード中のトーストを更新」のセクション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 シンボル名またはRAW SVG マークアップの場合:
toast.info('New message', { icon: 'message.fill', message: 'Open the inbox to reply.',});使用 iconSource URIのような画像に対して。絶対ファイルパス、または 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セクション
Capacitorを使用している場合Getting Started ネイティブ プラグインの作業を計画する場合、Capacitorを接続する Getting Started Capgo プラグイン ディレクトリ Capgo プラグイン ディレクトリの製品ワークフローについて Capacitor プラグイン (Capgo によって提供) Capacitor プラグイン (Capgo によって提供)の実装詳細について プラグインの追加または更新 プラグインの追加または更新の実装詳細について Ionic Enterprise プラグインの代替 Ionic Enterprise プラグインの代替の製品ワークフローについて Capgo ネイティブ ビルド Capgo ネイティブ ビルドの製品ワークフローについて