Thank you for using syncfusion products.
#Regarding calender date is selected or not
We have checked the reported query from our end. Your requirement can be achieved with help of selectedDate property in SfCalendar. Please refer to the following code snippet for your reference.
Code Snippet:
|
private void Button_Clicked(object sender, System.EventArgs e)
{
if (calendar.SelectedDate != null)
App.Current.MainPage.DisplayAlert("", "date is selected", "OK");
else
App.Current.MainPage.DisplayAlert("", "date is not selected", "OK");
} |
Please refer to the sample in the following locations for your reference.
Please let us know if you have any concerns.
Regards,
SaiGanesh Sakthivel