Hi,
I am adding a RadDatePicker programmatically to my MAUI app. It is being displayed on the page but when I click on it I get System.StackOverflowException: 'The requested operation caused a stack overflow.' Am I missing something?
private readonly RadDatePicker _datePicker;
_datePicker = new RadDatePicker();;
{
{ new StackLayout() { Children = { _datePicker }, Margin = 0, Orientation = StackOrientation.Horizontal } } }, 0, 0 }
};