1
1
using System ;
2
2
using System . Collections . Generic ;
3
- using Yoga ;
4
3
using ReactUnity . Styling . Converters ;
4
+ using Yoga ;
5
5
6
6
namespace ReactUnity . Styling
7
7
{
@@ -11,6 +11,7 @@ public static class LayoutProperties
11
11
public static readonly LayoutProperty < YogaFlexDirection > FlexDirection = new LayoutProperty < YogaFlexDirection > ( "FlexDirection" ) ;
12
12
public static readonly LayoutProperty < YogaJustify > JustifyContent = new LayoutProperty < YogaJustify > ( "JustifyContent" ) ;
13
13
public static readonly LayoutProperty < YogaDisplay > Display = new LayoutProperty < YogaDisplay > ( "Display" ) ;
14
+ public static readonly LayoutProperty < YogaBoxSizing > BoxSizing = new LayoutProperty < YogaBoxSizing > ( "BoxSizing" ) ;
14
15
public static readonly LayoutProperty < YogaAlign > AlignItems = new LayoutProperty < YogaAlign > ( "AlignItems" ) ;
15
16
public static readonly LayoutProperty < YogaAlign > AlignSelf = new LayoutProperty < YogaAlign > ( "AlignSelf" ) ;
16
17
public static readonly LayoutProperty < YogaAlign > AlignContent = new LayoutProperty < YogaAlign > ( "AlignContent" ) ;
@@ -67,6 +68,7 @@ public static class LayoutProperties
67
68
{ "flexDirection" , FlexDirection } ,
68
69
{ "justifyContent" , JustifyContent } ,
69
70
{ "display" , Display } ,
71
+ { "boxSizing" , BoxSizing } ,
70
72
{ "alignItems" , AlignItems } ,
71
73
{ "alignSelf" , AlignSelf } ,
72
74
{ "alignContent" , AlignContent } ,
@@ -116,6 +118,7 @@ public static class LayoutProperties
116
118
{ "rowGap" , RowGap } ,
117
119
{ "columnGap" , ColumnGap } ,
118
120
121
+ { "box-sizing" , BoxSizing } ,
119
122
{ "flex-direction" , FlexDirection } ,
120
123
{ "justify-content" , JustifyContent } ,
121
124
{ "align-items" , AlignItems } ,
0 commit comments