Hello I'm new to Ionic and I'm trying to create a datepicker in an input field.Something like this:
I saw the docs from Ionic framework but they have another form and doesn't work https://ionicframework.com/docs/native/date-picker/
Hello I'm new to Ionic and I'm trying to create a datepicker in an input field.Something like this:
I saw the docs from Ionic framework but they have another form and doesn't work https://ionicframework.com/docs/native/date-picker/
Here's a DateTime UI Component from Ionic. Ionic DateTime
Template Usage example
Reactive Forms
<form [formGroup]="signupForm">
<ion-datetime formControlName="signupDate"></ion-datetime>
</form>
with ngModel
<ion-datetime [(ngModel)]="signupDate"></ion-datetime>