Hi guys,
I'm rather new to Xamarin and was wondering about the possibilities of combining CarouselPage and TabbedPage..
The idea is that the user clicks on an item in the ListView, after clicking on an item a new page should be opened that has all details for this specific record.
Because there is a lot of data the CarouselPage should have three 'tabs' with its own content in it. But I also want to be able to swipe through all records.
So I should be able to browse through all items, such as a CarouselPage does and have tabs for every record.
For example:
Code on my ListViewPage:
public void ItemSelectedListView(object sender, SelectedItemChangedEventArgs e)
{
if (e.SelectedItem == null) return; // has been set to null, do not 'process' tapped event
Horse horseDetail = (Horse)((ListView)sender).SelectedItem;
var newPage = new HorseDetailPage(horseDetail);
Navigation.PushAsync(newPage);
}
How should I proceed from there on? What would be the best way to build this?
Thanks