Hi there. I currently have a day calendar which uses a Xamarin.Forms Grid Layout to display times in the left-most column, and events, (sometimes overlapping events,) in subsequent columns to the right, spanning however many rows is appropriate for the amount of time they take up. It displays similarly to a day view on the iOS Calendar App.
I want to give the user the ability to swipe left and right, to change the days, but since the view doesn't take up the entire page, I can't use a Carousel Page and must custom render a Carousel View. This seems to necessitate a custom renderer for the calendar (using the grid layout) as well, since the custom rendered Carousel View will need to know how to display its contents.
My question is: what would be a good choice for a custom rendered Grid Layout, such as this? (Just in iOS. I see there is already a GridView for Android.) I've read a bit about the UICollectionView, but I'm not sure if it's quite right... is there a better choice here? Thanks!
Cristina