Describe the bug
On StatefulGridHanlder.iOS.cs, if a checkbox has a tapped event handler without a command, it crashes because of not using null check
//// TODO: Fix working of native gesture recognizers of MAUI
foreach (var item in stateful.GestureRecognizers)
{
Debug.WriteLine(item.GetType().Name);
if (item is TapGestureRecognizer tgr)
{
tgr.Command.Execute(stateful);
}
}
iOS