New to .net maui question. How do I display the appointment details in a flyout when the user taps an appointment on the scheduler control? I have the event captured but cannot get a form to display or the desired format which is a flyout with the details. This is what I have:
private void OnSchedulerTapped(object sender, SchedulerTappedEventArgs e)
{
var appointments = e.Appointments;
var selectedDate = e.Date;
var schedulerElement = e.Element;
if (appointments != null)
{
Shell.Current.GoToAsync(nameof(ScheduleDetailPage));
}
}
and the ScheduleDetailPage is the default Welcome to .Net Maui message
Thanks.