Hi,
i would like to use the sfdatepicker in my xamarin application UWP.
Do you have an example of this or something that can explain me haw to use your component in the platform of xamarin?
In UWP platform i have this exception
Unable to cast object of type 'iMioRappEntry.UWP.iMioDatePicker_UWP' to type 'Xamarin.Forms.IRegisterable
and this is the code i wrote in UWP
[assembly: ExportRenderer(typeof(iMioDatePicker), typeof(iMioDatePicker_UWP))]
namespace iMioRappEntry.UWP
{
public class iMioDatePicker_UWP : SfDatePicker
{
public iMioDatePicker_UWP()
{
this.FormatString = "M";
DateTime = System.DateTime.Now;
}
}
}
Thanks in advance
Alberto C.