summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/RootPages/RootContentPage.cs
blob: 0e4e004ae4101b7b2ff1f0fd66050ffda16ac7f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;

namespace Xamarin.Forms.Controls
{
	
	public class RootContentPage : ContentPage 
	{
		public RootContentPage (string hierarchy) 
		{
			AutomationId = hierarchy + "PageId";
			Content = new SwapHierachyStackLayout (hierarchy);
		}
	}
}