메뉴로 바로가기

__CAPGO_KEEP_0__

GitHub

설치

설치

AI-Assisted Setup을 사용하여 플러그인을 설치할 수 있습니다. AI 도구에 Capgo 스킬을 추가하려면 다음 명령어를 사용하세요:

터미널 창
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-textinteraction` plugin in my project.

만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래에 플랫폼에 따라 설명된 지침을 따르세요:

터미널 창
bun add @capgo/capacitor-textinteraction
bunx cap sync

__CAPGO_KEEP_0__

__CAPGO_KEEP_0__ import
import { TextInteraction } from '@capgo/capacitor-textinteraction';

API 개요

API 개요

Capacitor 웹뷰에서 텍스트 상호작용(선택)을 Capacitor 토글로 끄거나 켭니다.

__CAPGO_KEEP_0__ 토글을 사용하여 텍스트 상호작용을 끄면, 텍스트 입력 제어를 사용할 수 없습니다. 사용할 때는 가급적이면 사용하고, 텍스트 입력이 필요할 때 다시 켜세요.

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.tsAPI의 공개 버전이 업스트림에서 변경될 때 다시 싱크를 실행하세요.

Getting Started에서 계속

Getting Started에서 계속 섹션 제목

Capgo를 사용 중이라면 Getting Started API을 위한 대시보드와 API 운영을 계획하고 연결하세요. @capgo/capacitor-textinteraction을 사용하여 @capgo/capacitor-textinteraction을 사용하여 native 기능을 사용합니다. API 개요 API 개요에서 구현 세부 정보를 참조하세요. 소개 소개에서 구현 세부 정보를 참조하세요. API 키 API 키에서 구현 세부 정보를 참조하세요. 그리고 기기 기기에서 구현 세부 정보를 참조하세요.