はじめに
インストール手順とフルマークダウンガイドを含むセットアッププロンプトをコピーしてください。
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-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-date-picker` plugin in my project.Manual Setupを使用する場合は、以下のコマンドを実行してプラグインをインストールし、以下のプラットフォーム固有の指示に従ってください。
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', },});共通 オプション
共通 オプション| オプション | 説明 |
|---|---|
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が日付を選択し、閉じます。 |
|---|---|
![]() | ![]() |
API リファレンス
セクションのタイトル “API リファレンス”API リファレンスは、パッケージの README と TypeScript 定義で完全に管理されています。

