Hi Sergio,
Thanks for contacting Syncfusion support.
We have analyzed your query for the SfPopup inside kanban not showed. We have validated the provided sample where you have used the kanban and popup inside the content of the ContentView and you have displayed the popup using the tapped event in Kanban. In android, we have notice the same behavior as you have reported that popup is showed only after the second tapped action. To resolve this, you can use this popup in the separate content page and open the popup from the Tapped event of Kanban. Refer the below code snippet.
|
public void Toquei(object sender, Syncfusion.SfKanban.XForms.KanbanTappedEventArgs e)
{
Popuppage popup = new Popuppage();
(popup.Content as SfPopupLayout).Show();
} |
We have attached the sample for your requirement and download from the following link.
For more details about the PopupLayout, you can refer our user guide documentation in the below link
Regards,
Vigneshkumar R