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 sync수입
수입 섹션import { TextInteraction } from '@capgo/capacitor-textinteraction';API 개요
섹션 제목 "API 개요"toggle
섹션 제목 "toggle"Capacitor 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 }>;}실질적 참조
실질적 참조 섹션이 페이지는 플러그인의 src/definitions.ts업스트림에서 pubic API이 변경될 때 다시 싱크를 실행하세요.
시작부터 계속
시작부터 계속 섹션Capgo를 사용 중이라면 Getting Started 대시보드와 API 연산을 계획하고 시작하려면 Capgo를 사용하여 @capgo/capacitor-textinteraction for the native capability in Using @capgo/capacitor-textinteraction, Capgo의 API 기능에 대한 개요 Capgo의 API 기능에 대한 구현 세부 정보 Capgo의 __CAPGO_KEEP_0__ 기능에 대한 구현 세부 정보 Capgo의 __CAPGO_KEEP_0__ 기능에 대한 키 Capgo의 API 기능에 대한 구현 세부 정보, 그리고 Capgo의 API 기능에 대한 구현 세부 정보 장치 장치에 대한 구현 세부 정보.