A IList<Page>. The default is an empty list.
The Multipage`1.Children collection of a Xamarin.Forms.Multipage`1 contains all the children added through the public add/remove interface. Internal children will not be exposed through this collection.
The following shows the creation of a Xamarin.Forms.TabbedPage, which descends from Xamarin.Forms.Multipage`1.
C# Example
Page pageOne = CreatePageOne ();
Page pageTwo = CreatePageTwo ();
var tabbedPage = new TabbedPage {
Title = "My App",
Children = {
pageOne,
pageTwo
}
};