Flutter教程

Date Picker

Contents

The DatePicker plugin allows the user to fetch date or time using native dialogs.

https://github.com/VitaliiBlagodir/cordova-plugin-datepicker

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic 日历Date Picker插件的安装(Installation)

ionic cordova plugin add cordova-plugin-datepicker npm install @ionic-native/date-picker
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/date-picker

Ionic 日历Date Picker插件支持的平台(Supported Platforms)

  • Android
  • iOS
  • Windows

Ionic 日历Date Picker插件的用法(Usage)

import { DatePicker } from '@ionic-native/date-picker/ngx';

constructor(private datePicker: DatePicker) { }


...


this.datePicker.show({
  date: new Date(),
  mode: 'date',
  androidTheme: this.datePicker.ANDROID_THEMES.THEME_HOLO_DARK
}).then(
  date => console.log('Got date: ', date),
  err => console.log('Error occurred while getting date: ', err)
);