How many types of Pages are available in Xamarin.Forms?

Technology CommunityCategory: XamarinHow many types of Pages are available in Xamarin.Forms?
VietMX Staff asked 4 years ago

Page is generally a Visual element which occupies all or most of the screen space containing a single child.

  • Content Page: It displays a single View generally containing a ScrollView or StackLayout.
  • Master Detail Page: It manages two panes of information, generally used for Sliding Panel/Drawer.
  • Navigation Page: It manages the navigation stack of Pages.
  • Tabbed Page: Used when navigation among children pages, using Tabs, is required.
  • Templated Page: It displays full screen content with a control template.
  • Carousel Page: It allows swipe gestures between sub pages similar like Gallery.