ScreenshotEvent
ScreenshotEvent はスクリーンショットを監視します。インストール のあとで呼び出します。最初のスクリーンショットを取りこぼさないよう、startWatchEvent より前に addListener を登録します。通知が必要なあいだ監視を続け、実機で物理スクリーンショットを確認し、画面破棄時に監視停止とハンドル削除を行います。
監視のライフサイクル
import { ScreenshotEvent } from '@rdlabo/capacitor-screenshot-event';
import type { PluginListenerHandle } from '@capacitor/core';
let handle: PluginListenerHandle | undefined;
const start = async () => {
if (handle) return;
handle = await ScreenshotEvent.addListener('userDidTakeScreenshot', () => {
console.log('Screenshot was taken');
});
await ScreenshotEvent.startWatchEvent();
// Take a physical screenshot on the device and confirm the listener runs.
};
const stop = async () => {
await ScreenshotEvent.removeWatchEvent();
await handle?.remove();
handle = undefined;
};
画面がアクティブになったら start、破棄時に stop を呼び出します。リスナーを登録してすぐ remove するだけの例にはしないでください。
監視とリスナーの型はAPIを参照してください。