Good day!. How can Xamarin Forms (Potable iOS, Android, WP) add data to the AlertDialog from ListView when the ItemTapped is pressed?
ItemTapped += (sender, position) => { var IdCommercia = position.Item as DepartmentReitingCommercialItemsViewCell; if (IdCommercia == null) return; OnAlertMessage() SelectedItem = null; }; async void OnAlertMessage() { await DisplayAlert("Предупреждение!", "сервис недоступен", "Ок"); } 