はじめに
このプラグインのインストール手順と完全なマークダウンガイドを含むセットアップコマンドをコピーします。
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.
インストール
「インストール」のセクションAI-Assisted セットアップを使用してプラグインをインストールできます。次のコマンドを使用して、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 セットアップを使用する場合は、次のコマンドを実行してプラグインをインストールし、以下のプラットフォーム固有の指示に従ってください。
npm install @capgo/capacitor-date-pickernpx cap syncインポート
「インポート」のセクション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 | 初期選択値。 |
min / max | 選択可能な最小値と最大値。 |
format | 出力形式。 ISO、Java/Unicode、および Moment-style の一般的な形式がサポートされています。 |
title | ダイアログのタイトル。 |
locale | ネイティブのピッカーでサポートされている場合の使用されるロケール。 |
timezone | パースとフォーマットに使用されるタイムゾーン。 |
is24h | 24時間の時間を優先します。 |
minuteStep | タイムピッカーの分間隔。 |
doneText / cancelText | カスタムアクションのラベル。 |
リポジトリには、Capacitorの例のアプリケーションが含まれており、ネイティブの日付ピッカー、時刻ピッカー、範囲ピッカー、プラグインバージョンコールをオープンします。 hide()iOS
| Android | iOSのアニメーション化されたデモです。@__CAPGO_KEEP_0__/__CAPGO_KEEP_1__-date-pickerが日付を選択し、閉じる |
|---|---|
![]() | ![]() |
The complete API reference is maintained in the package README and TypeScript definitions:

