11using System ;
22using System . Collections . Generic ;
3- using Yoga ;
43using ReactUnity . Styling . Converters ;
4+ using Yoga ;
55
66namespace ReactUnity . Styling
77{
@@ -11,6 +11,7 @@ public static class LayoutProperties
1111 public static readonly LayoutProperty < YogaFlexDirection > FlexDirection = new LayoutProperty < YogaFlexDirection > ( "FlexDirection" ) ;
1212 public static readonly LayoutProperty < YogaJustify > JustifyContent = new LayoutProperty < YogaJustify > ( "JustifyContent" ) ;
1313 public static readonly LayoutProperty < YogaDisplay > Display = new LayoutProperty < YogaDisplay > ( "Display" ) ;
14+ public static readonly LayoutProperty < YogaBoxSizing > BoxSizing = new LayoutProperty < YogaBoxSizing > ( "BoxSizing" ) ;
1415 public static readonly LayoutProperty < YogaAlign > AlignItems = new LayoutProperty < YogaAlign > ( "AlignItems" ) ;
1516 public static readonly LayoutProperty < YogaAlign > AlignSelf = new LayoutProperty < YogaAlign > ( "AlignSelf" ) ;
1617 public static readonly LayoutProperty < YogaAlign > AlignContent = new LayoutProperty < YogaAlign > ( "AlignContent" ) ;
@@ -67,6 +68,7 @@ public static class LayoutProperties
6768 { "flexDirection" , FlexDirection } ,
6869 { "justifyContent" , JustifyContent } ,
6970 { "display" , Display } ,
71+ { "boxSizing" , BoxSizing } ,
7072 { "alignItems" , AlignItems } ,
7173 { "alignSelf" , AlignSelf } ,
7274 { "alignContent" , AlignContent } ,
@@ -116,6 +118,7 @@ public static class LayoutProperties
116118 { "rowGap" , RowGap } ,
117119 { "columnGap" , ColumnGap } ,
118120
121+ { "box-sizing" , BoxSizing } ,
119122 { "flex-direction" , FlexDirection } ,
120123 { "justify-content" , JustifyContent } ,
121124 { "align-items" , AlignItems } ,
0 commit comments