@@ -26,17 +26,17 @@ public static FluentLayout AtTopOfLayoutGuide(this UIView view, UILayoutGuide la
26
26
27
27
public static FluentLayout AtTopOfSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
28
28
UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
29
- ? AtTopOfLayoutGuide ( view , parentView . SafeAreaLayoutGuide , margin )
29
+ ? view . AtTopOfLayoutGuide ( parentView . SafeAreaLayoutGuide , margin )
30
30
: view . AtTopOf ( parentView , margin ) ;
31
31
32
32
public static FluentLayout AtTopOfMargins ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
33
33
UIDevice . CurrentDevice . CheckSystemVersion ( 9 , 0 )
34
- ? AtTopOfLayoutGuide ( view , parentView . LayoutMarginsGuide , margin )
34
+ ? view . AtTopOfLayoutGuide ( parentView . LayoutMarginsGuide , margin )
35
35
: view . AtTopOf ( parentView , margin ) ;
36
36
37
37
public static FluentLayout AtTopOfReadableContent ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
38
38
UIDevice . CurrentDevice . CheckSystemVersion ( 9 , 0 )
39
- ? AtTopOfLayoutGuide ( view , parentView . ReadableContentGuide , margin )
39
+ ? view . AtTopOfLayoutGuide ( parentView . ReadableContentGuide , margin )
40
40
: view . AtTopOf ( parentView , margin ) ;
41
41
42
42
public static FluentLayout AtLeftOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
@@ -47,7 +47,7 @@ public static FluentLayout AtLeftOfLayoutGuide(this UIView view, UILayoutGuide l
47
47
48
48
public static FluentLayout AtLeftOfSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
49
49
UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
50
- ? AtLeftOfLayoutGuide ( view , parentView . SafeAreaLayoutGuide , margin )
50
+ ? view . AtLeftOfLayoutGuide ( parentView . SafeAreaLayoutGuide , margin )
51
51
: view . AtLeftOf ( parentView , margin ) ;
52
52
53
53
public static FluentLayout AtLeftOfMargins ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
@@ -57,7 +57,7 @@ public static FluentLayout AtLeftOfMargins(this UIView view, UIView parentView,
57
57
58
58
public static FluentLayout AtLeftOfReadableContent ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
59
59
UIDevice . CurrentDevice . CheckSystemVersion ( 9 , 0 )
60
- ? AtLeftOfLayoutGuide ( view , parentView . ReadableContentGuide , margin )
60
+ ? view . AtLeftOfLayoutGuide ( parentView . ReadableContentGuide , margin )
61
61
: view . AtLeftOf ( parentView , margin ) ;
62
62
63
63
public static FluentLayout AtRightOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
@@ -68,17 +68,17 @@ public static FluentLayout AtRightOfLayoutGuide(this UIView view, UILayoutGuide
68
68
69
69
public static FluentLayout AtRightOfSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
70
70
UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
71
- ? AtRightOfLayoutGuide ( view , parentView . SafeAreaLayoutGuide , margin )
71
+ ? view . AtRightOfLayoutGuide ( parentView . SafeAreaLayoutGuide , margin )
72
72
: view . AtRightOf ( parentView , margin ) ;
73
73
74
74
public static FluentLayout AtRightOfMargins ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
75
75
UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
76
- ? AtRightOfLayoutGuide ( view , parentView . LayoutMarginsGuide , margin )
76
+ ? view . AtRightOfLayoutGuide ( parentView . LayoutMarginsGuide , margin )
77
77
: view . AtRightOf ( parentView , margin ) ;
78
78
79
79
public static FluentLayout AtRightOfReadableContent ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
80
80
UIDevice . CurrentDevice . CheckSystemVersion ( 9 , 0 )
81
- ? AtRightOfLayoutGuide ( view , parentView . ReadableContentGuide , margin )
81
+ ? view . AtRightOfLayoutGuide ( parentView . ReadableContentGuide , margin )
82
82
: view . AtRightOf ( parentView , margin ) ;
83
83
84
84
public static FluentLayout AtBottomOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
@@ -89,17 +89,17 @@ public static FluentLayout AtBottomOfLayoutGuide(this UIView view, UILayoutGuide
89
89
90
90
public static FluentLayout AtBottomOfSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
91
91
UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
92
- ? AtBottomOfLayoutGuide ( view , parentView . SafeAreaLayoutGuide , margin )
92
+ ? view . AtBottomOfLayoutGuide ( parentView . SafeAreaLayoutGuide , margin )
93
93
: view . AtBottomOf ( parentView , margin ) ;
94
94
95
95
public static FluentLayout AtBottomOfMargins ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
96
96
UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
97
- ? AtBottomOfLayoutGuide ( view , parentView . LayoutMarginsGuide , margin )
97
+ ? view . AtBottomOfLayoutGuide ( parentView . LayoutMarginsGuide , margin )
98
98
: view . AtBottomOf ( parentView , margin ) ;
99
99
100
100
public static FluentLayout AtBottomOfReadableContent ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
101
101
UIDevice . CurrentDevice . CheckSystemVersion ( 9 , 0 )
102
- ? AtBottomOfLayoutGuide ( view , parentView . ReadableContentGuide , margin )
102
+ ? view . AtBottomOfLayoutGuide ( parentView . ReadableContentGuide , margin )
103
103
: view . AtBottomOf ( parentView , margin ) ;
104
104
105
105
public static FluentLayout AtLeadingOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
0 commit comments