컨텐츠로 바로가기

시작하기

설치

설치
터미널 창
bun add @capgo/capacitor-textinteraction
bunx cap sync
import { TextInteraction } from '@capgo/capacitor-textinteraction';

Capacitor WebView에서 텍스트 상호 작용 (선택) 활성화.

⚠️ 텍스트 상호 작용을 비활성화하면 텍스트 입력 제어를 비활성화시킵니다. 비활성화 시 텍스트 입력이 필요할 때 다시 활성화하세요.

iOS 전용

import { TextInteraction } from '@capgo/capacitor-textinteraction';
await TextInteraction.toggle({} as TextInteractionOptions);
export interface TextInteractionOptions {
/**
* Whether text interaction should be enabled or disabled. Disabling hides the
* magnifier lens reintroduced with iOS 15.
*/
enabled: boolean;
}
export interface TextInteractionResult {
/**
* `true` when the platform supports toggling text interaction (iOS >= 14.5), otherwise `false`.
*/
success: boolean;
/**
* Get the native Capacitor plugin version
*
* @returns {Promise<{ id: string }>} an Promise with version for this device
* @throws An error if the something went wrong
*/
getPluginVersion(): Promise<{ version: string }>;
}

진실의 근원

진실의 근원 섹션

이 페이지는 플러그인의 src/definitions.ts업스트림에서 pubic API이 변경되면 다시 싱크를 실행하세요.