Question - What are the different kinds of Pages in Xamarin.Forms?
Answer -
Fortunately Xamarin.Forms support multiple page representations, And every representation is having its own purpose like below:
- ContentPage – A Page that displays a single View, often a container such as a StackLayout or a ScrollView.
- MasterDetailPage – A Page that manages two panes of information.
- NavigationPage – A Page that manages the navigation and user-experience of a stack of other pages.
- TabbedPage – A Page that allows navigation between children pages, using tabs.
- TemplatedPage – A Page that displays full-screen content with a control template, and the base class for ContentPage.
- CarouselPage – A Page allowing swipe gestures between subpages, like a gallery.