summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PlatformConfiguration/macOSSpecific/TabsStyle.cs
blob: 0b498ae58d789b30d78dec1ca2e0d11b999cbe2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
namespace Xamarin.Forms
{
	public enum TabsStyle
	{
		Default = 0,
		Hidden = 1,
		Icons = 2,
		OnNavigation = 3,
		OnBottom = 4
	}
}