Have a Listview and with SelectedItemChangedEvent the details are showing on other page
Works fine.
But i found a Slider and is it possible to show the details in the Slider on the same page as the Listview and not on the other page ?
Fill the Listview from a Firebase database.
The Slider i made
https://xamaringuyshow.com/2020/06/21/xamarin-forms-bottom-slider/?utm_campaign=Weekly%2BXamarin&utm_medium=email&utm_source=Weekly_Xamarin_265
Go to other page and show the details
async void lstBal_ItemSelected(System.Object sender, Xamarin.Forms.SelectedItemChangedEventArgs e) { if (e.SelectedItem != null) { await Navigation.PushAsync(new Waar { BindingContext = e.SelectedItem as Person }); lstBal.SelectedItem = null; } }