summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/LayoutAlignment.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/LayoutAlignment.cs')
-rw-r--r--Xamarin.Forms.Core/LayoutAlignment.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/LayoutAlignment.cs b/Xamarin.Forms.Core/LayoutAlignment.cs
new file mode 100644
index 00000000..04b03e95
--- /dev/null
+++ b/Xamarin.Forms.Core/LayoutAlignment.cs
@@ -0,0 +1,13 @@
+using System;
+
+namespace Xamarin.Forms
+{
+ [Flags]
+ public enum LayoutAlignment
+ {
+ Start = 0,
+ Center = 1,
+ End = 2,
+ Fill = 3
+ }
+} \ No newline at end of file