summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/DeviceOrientation.cs
blob: 58385af82239d214edc09a98afdf18478068decc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Xamarin.Forms.Internals
{
	public enum DeviceOrientation
	{
		Portrait,
		Landscape,
		PortraitUp,
		PortraitDown,
		LandscapeLeft,
		LandscapeRight,
		Other
	}
}