This happens in UWP, but not in Android. I have note checked iOS.
It also only happens with a collectionview... not a listview.
I want to click on a collectionview item and have a different ContentView pop up.
Here's the strange part.... It works just fine if I have a DisplayActionSheet in it, but not without. The actionsheet doesn't even have to do anything.
private async Task ExecuteSavedTripDetailsPageCommand(object selection)
{
if (selection == null)
{
return;
}
SelectedSavedTrip = selection as Trip;
selection = null;
var results = await Application.Current.MainPage.DisplayActionSheet("What Would You Like To Do?", "Cancel",
null, "Go To Item", "Delete Item", "Delete All");
SavedTripsCV = new TripDetailsCV();
}
But the minute I comment it out, I get :
Xamarin.Forms.Platform.UWP
SelectableItemsViewRenderer`1.UpdateFormsSingleSelection ()
Xamarin.Forms.Platform.UWP
SelectableItemsViewRenderer`1.UpdateFormsSelection ()
Windows.ApplicationModel.Core
UnhandledError.Propagate ()
Microsoft.AppCenter.Utils
ApplicationLifecycleHelper.<ctor>b__17_1 (Object sender, UnhandledErrorDetectedEventArgs eventArgs)
