DatePicker not showing correctly on iOS 14.2

I’m testing DatePicker on latest iOS by using this example from this page https://fuseopen.com/docs/fuse/controls/datepicker.html

The result should put little date label which is clickable to expend the calender.
image

Instead I’m getting white screen and the whole page is clickable to open a calender. It looks like DatePicker is there but the view of the label crushed after last iOS update?

Example of issue:

Thanks for reporting, this is known issues, The reason because starting on on iOS 14 there are 2 new appearance for UIDatePicker, the compact and inline where in previous version there is only Wheels. The fix is coming soon hopefully.

In the meantime, you can add the Height property to the DatePicker to show it correctly. like:

<DatePicker Height="30" Width="100%" Value="{someDate}" MinValue="{minDate}" MaxValue="{maxDate}" />

by default now in iOS 14, it will show the compact mode, not Wheels appearance.