Hi,
I've updated my small project to Syncfusion 16.3.0.21 and Xamarin.Forms 3.3.0.912540.
After selecting a card of SfKanban, I received an error in item_tapped event, because KanbanTappedEventArgs e.Data is null.
private void SfKanban_ItemTapped(object sender, KanbanTappedEventArgs e)
{
KanbanModel data = e.Data as KanbanModel;
tappedId = data.ID;
...
In debug mode I can see, that e.Column is filled correctly, but e.Index is null too.
So I set up an older example of your site (Kanban_Demo1838318452.zip) with newest versions of syncfusion and xamarin - and got the same issue.
What am I doing wrong, or is it a bug?
Kind regards
Thomas