summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PlatformConfiguration/macOSSpecific/TabsStyle.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/PlatformConfiguration/macOSSpecific/TabsStyle.cs')
-rw-r--r--Xamarin.Forms.Core/PlatformConfiguration/macOSSpecific/TabsStyle.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/PlatformConfiguration/macOSSpecific/TabsStyle.cs b/Xamarin.Forms.Core/PlatformConfiguration/macOSSpecific/TabsStyle.cs
new file mode 100644
index 00000000..0b498ae5
--- /dev/null
+++ b/Xamarin.Forms.Core/PlatformConfiguration/macOSSpecific/TabsStyle.cs
@@ -0,0 +1,12 @@
+using System;
+namespace Xamarin.Forms
+{
+ public enum TabsStyle
+ {
+ Default = 0,
+ Hidden = 1,
+ Icons = 2,
+ OnNavigation = 3,
+ OnBottom = 4
+ }
+}