Currently working on a Xamarin.Forms app where we need a blank value in DatePicker
when the user did not select any date or when the form is loaded for the first time.
Here
DatePicker DO = new DatePicker();
DO.Format = "MM/dd/yyyy";
DO.Date = Convert.ToDateTime("01/01/1900");
we got this 01/01/1900
when the user did not select a date. But not the null or blank value in DatePicker
field.