async void OnItemTapped(object sender, ItemTappedEventArgs e) { string profileId = (e.Item as HistoryViewModel).ProfileId; ProfilePage profilePage = new ProfilePage(Container, profileId); ((ListView)sender).SelectedItem = null; await Navigation.PushAsync(profilePage); }
async Task ShowProfile(string profileId) { ProfilePage profilePage = new ProfilePage(Container, profileId); await Navigation.PushAsync(profilePage); }