@@ -21,31 +21,31 @@ public static class AdvancedFluentLayoutExtensions
2121 public static FluentLayout AtTopOf ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
2222 view . Top ( ) . EqualTo ( ) . TopOf ( parentView ) . Plus ( margin . GetValueOrDefault ( DefaultMargin ) ) ;
2323
24- public static FluentLayout AtTopOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
24+ public static FluentLayout AtTopOfSafeArea ( 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 ) )
2727 : 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
32- public static FluentLayout AtLeftOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
32+ public static FluentLayout AtLeftOfSafeArea ( 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 ) )
3535 : 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
40- public static FluentLayout AtRightOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
40+ public static FluentLayout AtRightOfSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
4141 UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
4242 ? view . Right ( ) . EqualTo ( ) . RightOf ( parentView . SafeAreaLayoutGuide ) . Minus ( margin . GetValueOrDefault ( DefaultMargin ) )
4343 : 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
48- public static FluentLayout AtBottomOfWithSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
48+ public static FluentLayout AtBottomOfSafeArea ( this UIView view , UIView parentView , nfloat ? margin = null ) =>
4949 UIDevice . CurrentDevice . CheckSystemVersion ( 11 , 0 )
5050 ? view . Bottom ( ) . EqualTo ( ) . BottomOf ( parentView . SafeAreaLayoutGuide ) . Minus ( margin . GetValueOrDefault ( DefaultMargin ) )
5151 : view . AtBottomOf ( parentView , margin ) ;
0 commit comments