-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPriority.cs
More file actions
30 lines (26 loc) · 938 Bytes
/
Copy pathPriority.cs
File metadata and controls
30 lines (26 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using UIKit;
namespace iNormal.FluentAutoLayout
{
/// <summary>
/// Make a shorter naming and float type version of layout priority.
/// </summary>
public static class Priority
{
/// <summary>
/// Required layout priority in float type.
/// </summary>
public const float Required = (float)UILayoutPriority.Required;
/// <summary>
/// Default high layout priority in float type.
/// </summary>
public const float High = (float)UILayoutPriority.DefaultHigh;
/// <summary>
/// Default low layout priority in float type.
/// </summary>
public const float Low = (float)UILayoutPriority.DefaultLow;
/// <summary>
/// Fitting Size level layout priority in float type.
/// </summary>
public const float Fitting = (float)UILayoutPriority.FittingSizeLevel;
}
}