@chandroiud wrote:
Is there a datapicker picker component in ionic2, I tried to use the datepicker as given in the ionic docs here: http://ionicframework.com/docs/v2/native/Date%20Picker/.
I did the following steps:
Installed the datepicker cordova plugin: cordova plugin add cordova-plugin-datepicker
Added the following code:
`import {DatePicker} from 'ionic-native';
DatePicker.show({
date: new Date(),
mode: 'date'
}).then(
date => console.log("Seleted date is: ", date),
err => console.log("Error occurred while getting date:", err)
);`I get the error as 'Module DatePicker not found'. How to install and configure this datepicker plugin? Can I install it via npm? Please help.
Posts: 5
Participants: 2