The calendar widget is cut in half for me, and I’ve pretty much just pasted the demo code from the docs. Any thoughts what I could be doing wrong?
Here is a gif video and below that my code. Thank you.
<ion-item button="true" id="open-date-input">
<ion-label>Appointment Date</ion-label>
<ion-text slot="end">{{ dateValue }}</ion-text>
<ion-popover trigger="open-date-input" show-backdrop="false">
<ng-template>
<ion-datetime
#popoverDatetime
presentation="date-time"
(ionChange)="dateValue = formatDate(popoverDatetime.value)"
>
</ion-datetime>
</ng-template>
</ion-popover>
</ion-item>
1 post - 1 participant