I would like to have a page which includes 3 items:
- A SwipeView: Horizontal swipe. We can swipe left and right to navigate to a next view. I think it is easy to achieve this one with ViewPager in Android (https://learn.microsoft.com/en-us/xamarin/android/user-interface/controls/view-pager/) and UIScrollView (pagingEnabled=YES) combined to UIPageControl (not sure where it is in Xamarin iOS). Look like there is no a UI control doing like this in Xamarin Form. I'm not sure.
- A DatePicker: We can select a date, then SwipeView will load and show a content related to the selected date.
- A Navigation: Include a previous navigation and next navigation, we can tap on these navigation to swipe to previous or next view. Behavior likes when we interact on SwipeView.
There is a big challenge here. By using SwipeView with Date navigation, we don't have a total dataset. We don't know number of views (pages) available!! Do you have any idea for solving this issue?