Hi Rikard,
Thank you for contacting Syncfusion support.
Based on the provided information, we have checked the reported issue with OnCalendarTapped event of Calendar in Xamarin.Forms and it is working fine as expected. Calendar element in the CalendarTappedEventArgs argument has been deprecated, instead you can use DateTime argument.
Please refer the following code example for the same,
[c#]
private void Calendar_OnCalendarTapped(object sender, CalendarTappedEventArgs e)
{
DisplayAlert(e.DateTime.ToString(), e.SelectedAppointment.ToString(), "Close");
}
|
We have prepared sample for the same based on your requirement,
Please check the sample, if you still face any issue kindly revert to us with more details (Platform / Syncfusion update version). It will be helpful for to check on it and provide you the solution.
Regards,
Subburaj Pandian V