Getting Started
复制一个包含安装步骤和本插件完整 Markdown 指南的设置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-shake`
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/shake/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.
您可以使用我们的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-shake` plugin in my project.如果您prefer手动设置,安装插件并运行以下命令,遵循以下平台特定的说明:
bun add @capgo/capacitor-shakebunx cap syncimport { CapacitorShake } from '@capgo/capacitor-shake';API 简介
标题:API 简介addListener
标题:添加监听器在设备上侦听摇摆事件。
注册一个监听器,监听设备检测到摇摆手势时会被调用。 设备的加速计用于识别摇摆模式。
import { CapacitorShake } from '@capgo/capacitor-shake';
const listener = await CapacitorShake.addListener('shake', () => { console.log('Shake detected!');});
// To remove the listener:await listener.remove();getPluginVersion
标题:获取插件版本获取本地 Capacitor 插件版本。
返回本地插件实现的当前版本。
import { CapacitorShake } from '@capgo/capacitor-shake';
const { version } = await CapacitorShake.getPluginVersion();console.log('Plugin version:', version);真实数据来源
标题:真实数据来源本页面由插件生成 src/definitions.ts重新同步时,公共API上游发生变化。
继续从Getting Started
标题为“继续从Getting Started”如果您正在使用 Getting Started 来规划仪表板和API操作,连接它与 使用@capgo/capacitor-shake 为native能力在使用@capgo/capacitor-shake 中API概述 为API概述 在__CAPGO_KEEP_0__概述中实现详细信息 为《介绍》中实现细节 API Keys 为《API Keys》中实现细节,并且 设备 为《设备》中实现细节