@@ -24,31 +24,31 @@ public static FluentLayout AtTopOf(this UIView view, UIView parentView, nfloat?
2424 public static FluentLayout AtTopOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
2525 UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
2626 ? view . Top ( ) . EqualTo ( ) . TopOf ( parentView . SafeAreaLayoutGuide ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) )
27- : view . AtTopOf ( parentView ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
27+ : view . AtTopOf ( parentView , margin ) ;
2828
2929 public static FluentLayout AtLeftOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
3030 view . Left ( ) . EqualTo ( ) . LeftOf ( parentView ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
3131
3232 public static FluentLayout AtLeftOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
3333 UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
3434 ? view . Left ( ) . EqualTo ( ) . LeftOf ( parentView . SafeAreaLayoutGuide ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) )
35- : view . AtLeftOf ( parentView ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
35+ : view . AtLeftOf ( parentView , margin ) ;
3636
3737 public static FluentLayout AtRightOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
3838 view . Right ( ) . EqualTo ( ) . RightOf ( parentView ) . Minus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
3939
4040 public static FluentLayout AtRightOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
4141 UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
4242 ? view . Right ( ) . EqualTo ( ) . RightOf ( parentView . SafeAreaLayoutGuide ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) )
43- : view . AtRightOf ( parentView ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
43+ : view . AtRightOf ( parentView , margin ) ;
4444
4545 public static FluentLayout AtBottomOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
4646 view . Bottom ( ) . EqualTo ( ) . BottomOf ( parentView ) . Minus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
4747
4848 public static FluentLayout AtBottomOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
4949 UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
5050 ? view . Bottom ( ) . EqualTo ( ) . BottomOf ( parentView . SafeAreaLayoutGuide ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) )
51- : view . AtBottomOf ( parentView ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
51+ : view . AtBottomOf ( parentView , margin ) ;
5252
5353 public static FluentLayout AtLeadingOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
5454 view . Leading ( ) . EqualTo ( ) . LeadingOf ( parentView ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
0 commit comments