Xamarin.Forms : Pages
Pages A page occupies the full screen in most cases. A page acts the same as Page on a Windows Phone and UIViewController on iOS. It is important to note that on Android they are more like a Resource.Layout and are certainly not an Activity. In Xamarin.Forms we have differents types of pages, the first: ContengPage: It Contains a single view. This is created by default when you create a new project. using System ; using Xamarin . Forms ; namespace ContentPageOSE { public class App : Application { public App () { // The root page of your application MainPage ...