Getting Started
설치 단계와 이 플러그인의 전체 마크다운 가이드를 포함한 설치 명령어를 복사하세요.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-textinteraction`
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/textinteraction/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-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-textinteractionbunx cap syncImport
Import 섹션import { TextInteraction } from '@capgo/capacitor-textinteraction';API 개요
API 개요 섹션toggle
toggleCapacitor 텍스트 상호 작용을 선택하여 WebView에서 활성화합니다.
⚠️ 텍스트 상호 작용을 비활성화하면 모든 텍스트 입력 제어가 비활성화되며 비활성화된 상태로 남습니다. 사용할 때는 적게 사용하고 텍스트 입력이 필요한 경우 다시 활성화하세요.
iOS 전용.
import { TextInteraction } from '@capgo/capacitor-textinteraction';
await TextInteraction.toggle({} as TextInteractionOptions);타입 참조
타입 참조TextInteractionOptions
타입 참조 옵션export interface TextInteractionOptions { /** * Whether text interaction should be enabled or disabled. Disabling hides the * magnifier lens reintroduced with iOS 15. */ enabled: boolean;}TextInteractionResult
타입 참조 결과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 }>;}실제 원
Source Of Truth이 페이지는 플러그인의 src/definitions.ts. upstream에서 변경된 경우 public API을 다시 동기화하세요.
Getting Started
Getting Started이 플러그인을 사용 중이시면 Getting Started 대시보드 및 API 연산을 계획하고 싶으시면 native capability을 사용하기 위해 @capgo/capacitor-textinteraction native capability을 사용하기 위해 @capgo/capacitor-textinteraction API Overview API Overview 소개 소개에서 구현 세부 정보를 위해 API 키 API 키에서 구현 세부 정보를 위해 장치 장치에서 구현 세부 정보를 위해