Good morning, I write the following code, but the calendar is not displayed on the page. Prompt, perhaps a hundred, what is the reason?
public class CalendarNewPage : ContentPage
{
public CalendarNewPage()
{
Title = "Calendar";
SfCalendar calendar = new SfCalendar();
this.Content = calendar;
}
}