@dolthead wrote:
How do I include an ion-datetime with other things in an ion-item?
Here is a simple repo from the blank starter with the ion-datetime issue:
https://github.com/dolthead/ionic-item-datetimeIf I comment out the ion-datetime, the h2, input, and p display fine. But they don’t show up when there’s an ion-datetime in the same item.
<ion-item *ngFor="let item of items"> <h2><input type="text" [(ngModel)]="item.title"></h2> <p>more stuff</p> <div class="flex-col alarm-button" item-end (click)="picker.open()"> <ion-icon name="alarm" color="primary"></ion-icon> <ion-datetime #picker displayFormat="h:mm a" pickerFormat="hmma" [(ngModel)]="startTime"></ion-datetime> </div> </ion-item>
There is some scss to shrink the ion-datetime and move it to the right. See the above github repo.
Posts: 1
Participants: 1