跳过内容

开始使用

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-flash` plugin in my project.

如果您prefer Manual Setup,安装插件并运行以下命令,然后遵循以下平台特定的说明:

终端窗口
bun add @capgo/capacitor-flash
bunx cap sync
import { CapacitorFlash } from '@capgo/capacitor-flash';

API 概述

API概述

isAvailable

isAvailable

检测设备是否支持闪光灯

import { CapacitorFlash } from '@capgo/capacitor-flash';
const { value } = await CapacitorFlash.isAvailable();
if (value) {
console.log('Flashlight is available');
}

开启闪光灯

import { CapacitorFlash } from '@capgo/capacitor-flash';
// Turn on at full brightness
await CapacitorFlash.switchOn({ intensity: 1.0 });
// Turn on at half brightness
await CapacitorFlash.switchOn({ intensity: 0.5 });

switchOff

setFlashlight

关闭闪光灯

import { CapacitorFlash } from '@capgo/capacitor-flash';
await CapacitorFlash.switchOff();

isSwitchedOn

isSwitchedOn

检测设备闪光灯的开关状态

import { CapacitorFlash } from '@capgo/capacitor-flash';
const { value } = await CapacitorFlash.isSwitchedOn();
console.log('Flashlight is on:', value);

点亮或关闭手电筒.

import { CapacitorFlash } from '@capgo/capacitor-flash';
const { value } = await CapacitorFlash.toggle();
console.log('Flashlight toggled, now on:', value);

真理来源

真理来源标题

此页面由插件生成 src/definitions.ts. 当公共API上游更改时,请重新运行同步.

继续从开始

继续从开始标题

如果您正在使用 开始 规划仪表板和API操作,连接它 使用@capgo/capacitor-flash 使用@capgo/capacitor-flash, API概述 查看API概述的实现细节 介绍 查看介绍的实现细节 API密钥 查看API密钥的实现细节 设备 查看设备的实现细节