はじめに
このプラグインのためのインストール手順と完全なマークダウンガイドを含むセットアッププロンプトをコピーする。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-date-picker`
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/date-picker/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.
インストール
「インストール」のセクションCapgoのAIアシスタントセットアップを使用してプラグインをインストールできます。次のコマンドを使用して、CapgoスキルをAIツールに追加してください。
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-date-picker` plugin in my project.Manual Setupを使用する場合は、以下のコマンドを実行して、以下のプラットフォーム固有の指示に従ってください。
npm install @capgo/capacitor-date-pickernpx cap syncImport
「Import」のセクションimport { DatePicker } from '@capgo/capacitor-date-picker';日付を選択
日付を選択するconst result = await DatePicker.present({ mode: 'date', date: '2026-05-27', min: '2026-01-01', max: '2026-12-31', format: 'yyyy-MM-dd', title: 'Select date',});
console.log(result.value);時間を選択する
時間を選択するconst result = await DatePicker.present({ mode: 'time', is24h: true, minuteStep: 15, format: 'HH:mm', title: 'Select time',});
console.log(result.value);日付と時間を選択する
日付と時間を選択するconst result = await DatePicker.present({ mode: 'dateAndTime', date: '2026-05-27T14:30:00', format: "yyyy-MM-dd'T'HH:mm:ss", title: 'Select date and time',});月を選択する
月を選択するconst result = await DatePicker.present({ mode: 'yearAndMonth', date: '2026-05-01', format: 'yyyy-MM', title: 'Select month',});期間を選択する
範囲を選択するconst range = await DatePicker.presentRange({ start: '2026-05-01', end: '2026-05-27', format: 'yyyy-MM-dd', startTitle: 'Start date', endTitle: 'End date',});
console.log(range.start, range.end, range.value);ピッカを非表示
範囲を選択するawait DatePicker.hide();プラットフォームのオプション
範囲を選択するawait DatePicker.present({ mode: 'date', date: '2026-05-27', title: 'Select date', ios: { style: 'inline', theme: 'light', }, android: { theme: 'light', },});共通のオプション
セクション| 説明 | __CAPGO_KEEP_0__ |
|---|---|
mode | date, time, dateAndTime, yearAndMonth, countDownTimer, または range. |
date | __CAPGO_KEEP_0__ |
min / max | __CAPGO_KEEP_0__ |
format | __CAPGO_KEEP_0__ |
title | __CAPGO_KEEP_0__ |
locale | __CAPGO_KEEP_0__ |
timezone | __CAPGO_KEEP_0__ |
is24h | __CAPGO_KEEP_0__ |
minuteStep | __CAPGO_KEEP_0__ |
doneText / cancelText | __CAPGO_KEEP_0__ |
例:アプリ
「例:アプリ」リポジトリには、Capacitorの例のアプリケーションが含まれており、ネイティブの日付ピッカー、時刻ピッカー、範囲ピッカーを開きます、 hide()、およびプラグインバージョンコール。
| iOS | Android |
|---|---|
![]() | ![]() |
APIのリファレンス
セクション「APIのリファレンス」APIの完全なリファレンスは、パッケージのREADMEとTypeScript定義で管理されています:

